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/m32r/m32r.h (BIG_ENDIAN_BIT): Deleted to fix endian bug.
[official-gcc.git]
/
libf2c
/
libF77
/
r_abs.c
blob
6f62724ef17a1ed6773267bb3e6f04553bfe1805
1
#include
"f2c.h"
2
3
double
4
r_abs
(
real
*
x
)
5
{
6
if
(*
x
>=
0
)
7
return
(*
x
);
8
return
(-*
x
);
9
}