Welcome to mirror list, hosted at ThFree Co, Russian Federation.

w_sincos.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ea12448200b07cd8d03ce23876d554a30f74458 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/sincos.h"

void sincos(double angle, double* sinx, double* cosx)
{
  return _sincos(angle, sinx, cosx);
}