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

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