V7M/src/libF77/r_sign.c

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

double r_sign(a,b)
float *a, *b;
{
float x;
x = (*a >= 0 ? *a : - *a);
return( *b >= 0 ? x : -x);
}