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
* gcj.texi (Compatibility): Add Limitations and Extensions section.
[official-gcc.git]
/
libf2c
/
libF77
/
d_nint.c
blob
8be42758644e9c772a215e5a91569313d0b8c459
1
#include
"f2c.h"
2
3
#undef abs
4
#include <math.h>
5
double
6
d_nint
(
doublereal
*
x
)
7
{
8
return
((*
x
) >=
0
?
floor
(*
x
+
.5
) : -
floor
(
.5
- *
x
));
9
}