* cppfiles.c (_cpp_execute_include): Move `len` initialisation
[official-gcc.git] / libf2c / libF77 / d_tanh.c
blob92a02d4fd6ba56c4572b99c9ccb35909d4026a5d
1 #include "f2c.h"
3 #ifdef KR_headers
4 double tanh();
5 double d_tanh(x) doublereal *x;
6 #else
7 #undef abs
8 #include <math.h>
9 double d_tanh(doublereal *x)
10 #endif
12 return( tanh(*x) );