aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/runtime/libF77/d_atan.c
blob: caea4a406e0b9b0e94cddd0eec71f7f8a60ac786 (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) );
}