ack/lang/m2/libm2/absd.c
1987-05-13 14:36:45 +00:00

9 lines
79 B
C

#ifndef NOFLOAT
double
_absd(i)
double i;
{
return i >= 0 ? i : -i;
}
#endif