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

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

void sincosf(float angle, float* sinx, float* cosx)
{
  return _sincosf(angle, sinx, cosx);
}