mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-22 16:40:08 +08:00
9 lines
126 B
C
9 lines
126 B
C
|
#include "f2c.h"
|
||
|
|
||
|
integer i_sign(integer *a, integer *b)
|
||
|
{
|
||
|
integer x;
|
||
|
x = (*a >= 0 ? *a : - *a);
|
||
|
return( *b >= 0 ? x : -x);
|
||
|
}
|