summaryrefslogtreecommitdiffstats
path: root/lib/libF77/r_tanh.c
blob: 044255a08cc0d083fbb18c9957a3df1730c2e6aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "f2c.h"

#ifdef KR_headers
double tanh();
double r_tanh(x) real *x;
#else
#undef abs
#include "math.h"
double r_tanh(real *x)
#endif
{
return( tanh(*x) );
}
OpenPOWER on IntegriCloud