ack/lang/fortran/lib/libF77/d_tanh.c
1991-10-07 16:59:33 +00:00

9 lines
89 B
C

#include "f2c.h"
double d_tanh(x)
doublereal *x;
{
double tanh();
return( tanh(*x) );
}