V7M/src/libF77/h_sign.c

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

short h_sign(a,b)
short *a, *b;
{
short x;
x = (*a >= 0 ? *a : - *a);
return( *b >= 0 ? x : -x);
}