summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-04 11:40:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-04 11:40:58 +0000
commit0cf0b0eed4442fe7ed07d0c0bffe8bd7acbbe166 (patch)
tree4fcbab87f937a764b89515a9310eb2c8d5ba06f9 /numeric.c
parent6da90f39c6a1874edbf02d0274e5187789152db9 (diff)
* numeric.c (round): added declaration. [ruby-dev:39222]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24750 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/numeric.c b/numeric.c
index 7f74cde562..09a6ef329d 100644
--- a/numeric.c
+++ b/numeric.c
@@ -63,6 +63,8 @@
#define DBL_EPSILON 2.2204460492503131e-16
#endif
+extern double round(double);
+
#ifndef HAVE_ROUND
double
round(double x)
@@ -79,9 +81,6 @@ round(double x)
}
return x;
}
-#elif defined(__BEOS__)
-/* appears to be a bug in the BeOS headers */
-double round(double x);
#endif
static ID id_coerce, id_to_i, id_eq;