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 *****************************************************************/
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 */