fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git] / toolchain / gcc / newlib / libm / mathfp / sf_sinh.c
bloba50e566068ffab59ef9cafd4fe0e4848a4f93a7f
2 /* @(#)z_sinhf.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 float
21 _DEFUN (sinhf, (float),
22 float x)
24 return (sinehf (x, 0));
27 #ifdef _DOUBLE_IS_32BITS
29 double sinh (double x)
31 return (double) sinhf ((float) x);
34 #endif /* _DOUBLE_IS_32BITS */