fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libm / mathfp / s_sinh.c
blobc600ee0da6f332e311e6b16ee19f270d64342665
2 /* @(#)z_sinh.c 1.0 98/08/13 */
3 /******************************************************************
4 * Hyperbolic Sine
6 * Input:
7 * x - floating point value
9 * Output:
10 * hyperbolic sine of x
12 * Description:
13 * This routine returns the hyperbolic sine of x.
15 *****************************************************************/
17 #include "fdlibm.h"
18 #include "zmath.h"
20 #ifndef _DOUBLE_IS_32BITS
22 double
23 _DEFUN (sinh, (double),
24 double x)
26 return (sineh (x, 0));
29 #endif /* _DOUBLE_IS_32BITS */