V7M/src/libm/fabs.c

Compare this file to the similar file:
Show the results in this format:

double
fabs(arg)
double arg;
{

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