mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-11 13:47:38 +08:00
* libF77/*: Delete KR_headers cruft. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54132
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);
|
|
}
|