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
/
h_abs.c
blob
9db19ca34e9506cda508a72c76f056b53d796fbb
1
#include
"f2c.h"
2
3
shortint
4
h_abs
(
shortint
*
x
)
5
{
6
if
(*
x
>=
0
)
7
return
(*
x
);
8
return
(-*
x
);
9
}