repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* config/xtensa/xtensa.c (xtensa_emit_loop_end): Only use "nop.n"
[official-gcc.git]
/
libf2c
/
libF77
/
i_sign.c
blob
cf090086d008fe81990755112ddf366099734d63
1
#include
"f2c.h"
2
3
integer
4
i_sign
(
integer
*
a
,
integer
*
b
)
5
{
6
integer x
;
7
x
= (*
a
>=
0
? *
a
: -*
a
);
8
return
(*
b
>=
0
?
x
: -
x
);
9
}