/* * "@(#)r_cosh.c 1.1" */ double r_cosh(x) float *x; { double cosh(); return( cosh(*x) ); }