added long/short conversions. DLW
[unix-history] / usr / src / usr.bin / f77 / libF77 / d_tanh.c
/*
* "@(#)d_tanh.c 1.1"
*/
double d_tanh(x)
double *x;
{
double tanh();
return( tanh(*x) );
}