new file organization
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_cosh.c
CommitLineData
a10626f6
DW
1/*
2 * "@(#)d_cosh.c 1.1"
3 */
4
5double d_cosh(x)
6double *x;
7{
8double cosh();
9return( cosh(*x) );
10}