Start development on BSD-SCCS
[unix-history] / .ref-BSD-3 / usr / src / libF77 / d_cosh.c
CommitLineData
0ee0e326
BJ
1double d_cosh(x)
2double *x;
3{
4double cosh();
5return( cosh(*x) );
6}