pdp11v/usr/src/lib/libF77/d_abs.c

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

/*	@(#)d_abs.c	1.2	*/
double d_abs(x)
double *x;
{
if(*x >= 0)
	return(*x);
return(- *x);
}