repo.or.cz
/
ruby-svn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* gc.c: __size__ removed. use the length of __members__ instead.
[ruby-svn.git]
/
missing
/
isnan.c
blob
a8733978add8b3b1797e56eccae8221b7fde2767
1
/* public domain rewrite of isnan(3) */
2
3
static int
double_ne
(
double
n1
,
double
n2
);
4
5
int
6
isnan
(
double
n
)
7
{
8
return
double_ne
(
n
,
n
);
9
}
10
11
static int
12
double_ne
(
double
n1
,
double
n2
)
13
{
14
return
n1
!=
n2
;
15
}