double
fabs(arg)
double arg;
{

	if(arg < 0.)
		arg = -arg;
	return(arg);
}