1 /* sincos -- currently no more efficient than two separate calls to
9 void sincosf(float x
, float *sinx
, float *cosx
)
11 void sincosf(x
, sinx
, cosx
)
21 #ifdef _DOUBLE_IS_32BITS
24 void sincos(double x
, double *sinx
, double *cosx
)
26 void sincos(x
, sinx
, cosx
)
32 *sinx
= sinf((float) x
);
33 *cosx
= cosf((float) x
);
35 #endif /* defined(_DOUBLE_IS_32BITS) */
36 #endif /* __OBSOLETE_MATH */