URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib/] [newlib/] [libm/] [mathfp/] [s_sin.c] - Rev 1775
Go to most recent revision | Compare with Previous | Blame | View Log
/* @(#)z_sin.c 1.0 98/08/13 */ /****************************************************************** * Sine * * Input: * x - floating point value * * Output: * sine of x * * Description: * This routine returns the sine of x. * *****************************************************************/ #include "fdlibm.h" #include "zmath.h" #ifndef _DOUBLE_IS_32BITS double _DEFUN (sin, (double), double x) { return (sine (x, 0)); } #endif /* _DOUBLE_IS_32BITS */
Go to most recent revision | Compare with Previous | Blame | View Log