2.9BSD/usr/src/lib/c/gen/abs.c

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

/*	@(#)abs.c	2.1	SCCS id keyword	*/
abs(arg)
{

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