Pristine Ack-5.5
[Ack-5.5.git] / lang / fortran / lib / libF77 / d_abs.c
1 #include "f2c.h"
2
3 double d_abs(x)
4 doublereal *x;
5 {
6 if(*x >= 0)
7         return(*x);
8 return(- *x);
9 }