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

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

/*	@(#)h_sign.c	1.2	*/
short h_sign(a,b)
short *a, *b;
{
short x;
x = (*a >= 0 ? *a : - *a);
return( *b >= 0 ? x : -x);
}