URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [newlib/] [newlib/] [libm/] [mathfp/] [sf_asin.c] - Rev 57
Go to most recent revision | Compare with Previous | Blame | View Log
/* @(#)z_asinf.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" float _DEFUN (asinf, (float), float x) { return (asinef (x, 0)); } #ifdef _DOUBLE_IS_32BITS double asin (double x) { return (double) asinef ((float) x, 0); } #endif /* defined(_DOUBLE_IS_32BITS) */
Go to most recent revision | Compare with Previous | Blame | View Log