Bell 32V development
[unix-history] / usr / src / libF77 / d_tanh.c
double d_tanh(x)
double *x;
{
double tanh();
return( tanh(*x) );
}