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
Patch for PR 9255
[official-gcc.git]
/
libf2c
/
libF77
/
h_sign.c
blob
70402325be211a36166919d6326f411d84e5d36d
1
#include
"f2c.h"
2
3
shortint
4
h_sign
(
shortint
*
a
,
shortint
*
b
)
5
{
6
shortint x
;
7
x
= (*
a
>=
0
? *
a
: -*
a
);
8
return
(*
b
>=
0
?
x
: -
x
);
9
}