Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libm / mathfp / s_asin.c
blobb20f0a3f270b42341c43c75a32df1113ea55c671
2 /* @(#)z_asin.c 1.0 98/08/13 */
3 /******************************************************************
4 * Arcsine
6 * Input:
7 * x - floating point value
9 * Output:
10 * arcsine of x
12 * Description:
13 * This routine returns the arcsine of x.
15 *****************************************************************/
17 #include "fdlibm.h"
18 #include "zmath.h"
20 #ifndef _DOUBLE_IS_32BITS
22 double
23 asin (double x)
25 return (asine (x, 0));
28 #endif /* _DOUBLE_IS_32BITS */