4.2BSD/usr/src/usr.lib/libF77/i_abs.c

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

/*
 *	"@(#)i_abs.c	1.1"
 */

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