fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libm / mathfp / s_sincos.c
blobe313e6f1d9e3c5390132f6e123a32a9198cda23d
2 /* @(#)z_sin.c 1.0 98/08/13 */
3 /******************************************************************
4 * Sine
6 * Input:
7 * x - floating point value
9 * Output:
10 * sine of x
12 * Description:
13 * This routine returns the sine of x.
15 *****************************************************************/
17 #include "fdlibm.h"
18 #include "zmath.h"
20 #ifndef _DOUBLE_IS_32BITS
22 void
23 _DEFUN (sincos, (x, sinx, cosx),
24 double x _AND
25 double *sinx _AND
26 double *cosx)
28 *sinx = sin (x);
29 *cosx = cos (x);
32 #endif /* _DOUBLE_IS_32BITS */