* config/netbsd.h (CPP_SPEC): Remove.
[official-gcc.git] / libf2c / libF77 / d_acos.c
blob33da5369db216787f51678a326041b96e77e4ff6
1 #include "f2c.h"
3 #ifdef KR_headers
4 double acos();
5 double d_acos(x) doublereal *x;
6 #else
7 #undef abs
8 #include <math.h>
9 double d_acos(doublereal *x)
10 #endif
12 return( acos(*x) );