2 /* @(#)z_sinh.c 1.0 98/08/13 */
3 /******************************************************************
7 * x - floating point value
10 * hyperbolic sine of x
13 * This routine returns the hyperbolic sine of x.
15 *****************************************************************/
20 #ifndef _DOUBLE_IS_32BITS
23 _DEFUN (sinh
, (double),
26 return (sineh (x
, 0));
29 #endif /* _DOUBLE_IS_32BITS */