Retro68/gcc/newlib/libm/mathfp/s_asin.c

29 lines
473 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
/* @(#)z_asin.c 1.0 98/08/13 */
/******************************************************************
* Arcsine
*
* Input:
* x - floating point value
*
* Output:
* arcsine of x
*
* Description:
* This routine returns the arcsine of x.
*
*****************************************************************/
#include "fdlibm.h"
#include "zmath.h"
#ifndef _DOUBLE_IS_32BITS
double
2018-12-28 15:30:48 +00:00
asin (double x)
2017-04-11 21:13:36 +00:00
{
return (asine (x, 0));
}
#endif /* _DOUBLE_IS_32BITS */