Blame | Last modification | View Log | RSS feed
#include <math.h>
double
fabs(double arg)
{
if(arg < 0)
return -arg;
return arg;
}