d_cosh X
1: /* 2: * "@(#)d_cosh.c 1.1" 3: */ 4: 5: double d_cosh(x) 6: double *x; 7: { 8: double cosh(); 9: return( cosh(*x) ); 10: }