V7M/src/libF77/i_abs.c

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

long int i_abs(x)
long int *x;
{
if(*x >= 0)
	return(*x);
return(- *x);
}