Cygwin: mmap: use 64K pages for bookkeeping, second attempt
[newlib-cygwin.git] / newlib / libm / mathfp / s_sin.c
blobc394f8548338068b44c6f8fe807ab82ec1f886fa
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 double
23 sin (double x)
25 return (sine (x, 0));
28 #endif /* _DOUBLE_IS_32BITS */