V7M/src/libF77/r_abs.c

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

double r_abs(x)
float *x;
{
if(*x >= 0)
	return(*x);
return(- *x);
}