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

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