V7M/src/libF77/i_sign.c

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

long int i_sign(a,b)
long int *a, *b;
{
long int x;
x = (*a >= 0 ? *a : - *a);
return( *b >= 0 ? x : -x);
}