Bell 32V development
[unix-history] / usr / src / libF77 / r_tanh.c
... / ...
CommitLineData
1double r_tanh(x)
2float *x;
3{
4double tanh();
5return( tanh(*x) );
6}