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
* include/ruby/encoding.h (rb_econv_check_error): declared.
[ruby-svn.git]
/
missing
/
finite.c
blob
8d0b7af262bbda281b66d4a88be51ca559d55ed6
1
/* public domain rewrite of finite(3) */
2
3
int
4
finite
(
double
n
)
5
{
6
return
!
isnan
(
n
) && !
isinf
(
n
);
7
}