date and time created 83/01/21 11:15:51 by dlw
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_tanh.c
CommitLineData
3deef29d
DW
1/*
2 * "@(#)d_tanh.c 1.1"
3 */
4
5double d_tanh(x)
6double *x;
7{
8double tanh();
9return( tanh(*x) );
10}