Move *-*-gnu* pattern below *-*-linux*.
[official-gcc.git] / libf2c / libF77 / d_log.c
blob592015b28212ec984c5b3dbbd26d30b196d8da89
1 #include "f2c.h"
3 #ifdef KR_headers
4 double log();
5 double d_log(x) doublereal *x;
6 #else
7 #undef abs
8 #include <math.h>
9 double d_log(doublereal *x)
10 #endif
12 return( log(*x) );