Fix bug building libgcc:
[official-gcc.git] / libf2c / libF77 / d_atan.c
blobcaea4a406e0b9b0e94cddd0eec71f7f8a60ac786
1 #include "f2c.h"
3 #ifdef KR_headers
4 double atan();
5 double d_atan(x) doublereal *x;
6 #else
7 #undef abs
8 #include <math.h>
9 double d_atan(doublereal *x)
10 #endif
12 return( atan(*x) );