9 lines
89 B
C
9 lines
89 B
C
|
#include "f2c.h"
|
||
|
|
||
|
double d_tanh(x)
|
||
|
doublereal *x;
|
||
|
{
|
||
|
double tanh();
|
||
|
return( tanh(*x) );
|
||
|
}
|