summaryrefslogtreecommitdiffstats
path: root/missing/isnan.c
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-22 01:28:00 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-22 01:28:00 +0000
commit03e88d8ac46156ac28d3ad14cd5025851cb15975 (patch)
tree3475fe7f783e96106c803fca0c28620dd27e9f2f /missing/isnan.c
parentcfeb22c3016f896ede986a9b80e8245b80c06fe4 (diff)
downloadruby-03e88d8ac46156ac28d3ad14cd5025851cb15975.tar.gz
ruby-03e88d8ac46156ac28d3ad14cd5025851cb15975.tar.xz
ruby-03e88d8ac46156ac28d3ad14cd5025851cb15975.zip
* missing.h, missing/*.c: SUSv3 compatible strcasecmp and strncasecmp,
ANSI compatible strtol and strtoul, and ANSI styled other functions. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing/isnan.c')
-rw-r--r--missing/isnan.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/missing/isnan.c b/missing/isnan.c
index 459048e93..a8733978a 100644
--- a/missing/isnan.c
+++ b/missing/isnan.c
@@ -1,17 +1,15 @@
/* public domain rewrite of isnan(3) */
-static int double_ne();
+static int double_ne(double n1, double n2);
int
-isnan(n)
- double n;
+isnan(double n)
{
return double_ne(n, n);
}
static int
-double_ne(n1, n2)
- double n1, n2;
+double_ne(double n1, double n2)
{
return n1 != n2;
}