V7M/src/libF77/r_cosh.c

Compare this file to the similar file:
Show the results in this format:

double r_cosh(x)
float *x;
{
double cosh();
return( cosh(*x) );
}