Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libm / mathfp / s_sinh.c
blob55b339bfb9594a1698815ea70785eb37ba43165e
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 sinh (double x)
25 return (sineh (x, 0));
28 #endif /* _DOUBLE_IS_32BITS */