2 /* @(#)z_sinhf.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 *****************************************************************/
21 _DEFUN (sinhf
, (float),
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 */