Research V7 development
[unix-history] / usr / src / libF77 / r_cosh.c
CommitLineData
27d66adc
KT
1double r_cosh(x)
2float *x;
3{
4double cosh();
5return( cosh(*x) );
6}