2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2024-12-25 20:49:48 +08:00
gcc/libf2c/libF77/d_tanh.c

14 lines
178 B
C
Raw Normal View History

#include "f2c.h"
#ifdef KR_headers
double tanh();
double d_tanh(x) doublereal *x;
#else
#undef abs
#include <math.h>
double d_tanh(doublereal *x)
#endif
{
return( tanh(*x) );
}