V9/libc/gen/labs.c

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

long
labs(x)
long x;
{
	if(x<0)
		x = -x;
	return x;
}