Include the fortran library sources from GCC 3.4.4.
[dragonfly.git] / contrib / gcc-3.4 / libf2c / libF77 / d_abs.c
1 #include "f2c.h"
2
3 double
4 d_abs (doublereal * x)
5 {
6   if (*x >= 0)
7     return (*x);
8   return (-*x);
9 }