Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libm / mathfp / sf_sinh.c
blob78cbef90d766a7395fefce1bb8370e56fb6b0395
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 sinhf (float x)
23 return (sinehf (x, 0));
26 #ifdef _DOUBLE_IS_32BITS
28 double sinh (double x)
30 return (double) sinhf ((float) x);
33 #endif /* _DOUBLE_IS_32BITS */