Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libm / mathfp / sf_asin.c
blob391ac304e02b6e78906c495cd26cd450cb473d95
2 /* @(#)z_asinf.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 float
21 asinf (float x)
23 return (asinef (x, 0));
26 #ifdef _DOUBLE_IS_32BITS
28 double asin (double x)
30 return (double) asinef ((float) x, 0);
33 #endif /* defined(_DOUBLE_IS_32BITS) */