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: Remove unused include of machmode.h.
[official-gcc.git]
/
libf2c
/
libF77
/
d_abs.c
blob
a43a5c7f0a88a371672588e6a7a90f38452f1b78
1
#include
"f2c.h"
2
3
double
4
d_abs
(
doublereal
*
x
)
5
{
6
if
(*
x
>=
0
)
7
return
(*
x
);
8
return
(-*
x
);
9
}