2 /* @(#)z_coshf.c 1.0 98/08/13 */
3 /******************************************************************
7 * x - floating point value
10 * hyperbolic cosine of x
13 * This routine returns the hyperbolic cosine of x.
15 *****************************************************************/
23 return (sinehf (x
, 1));
26 #ifdef _DOUBLE_IS_32BITS
27 double cosh (double x
)
29 return (double) sinehf ((float) x
, 1);
32 #endif /* defined(_DOUBLE_IS_32BITS) */