V9/libc/gen/sgn.c

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

sgn(arg)
{
	return(arg<0? -1: arg==0? 0: 1);
}