summaryrefslogtreecommitdiff
path: root/libf2c/libF77/r_tanh.c
blob: 9fe150e01726542d4800c5677aa2740838b4865a (plain)
1
2
3
4
5
6
7
8
#include "f2c.h"

#undef abs
#include <math.h>
double r_tanh(real *x)
{
return( tanh(*x) );
}