BSD 3 development
[unix-history] / usr / src / lib / libm / fabs.c
double
fabs(arg)
double arg;
{
if(arg < 0.)
arg = -arg;
return(arg);
}