407c72cb29
* libF77/*: Fix formatting. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54145
10 lines
134 B
C
10 lines
134 B
C
#include "f2c.h"
|
|
|
|
integer
|
|
i_sign (integer * a, integer * b)
|
|
{
|
|
integer x;
|
|
x = (*a >= 0 ? *a : -*a);
|
|
return (*b >= 0 ? x : -x);
|
|
}
|