1 /* sincos -- currently no more efficient than two separate calls to
7 void sincosf(float x
, float *sinx
, float *cosx
)
9 void sincosf(x
, sinx
, cosx
)
19 #ifdef _DOUBLE_IS_32BITS
22 void sincos(double x
, double *sinx
, double *cosx
)
24 void sincos(x
, sinx
, cosx
)
30 *sinx
= sinf((float) x
);
31 *cosx
= cosf((float) x
);
33 #endif /* defined(_DOUBLE_IS_32BITS) */