Index: src/platform-freebsd.cc |
diff --git a/src/platform-freebsd.cc b/src/platform-freebsd.cc |
index d7544db1ca153cf53e0acf413f7ade42f627b748..e403d6d1a03ed68e249a5638cc9dbd9ccb7f5ef5 100644 |
--- a/src/platform-freebsd.cc |
+++ b/src/platform-freebsd.cc |
@@ -63,16 +63,6 @@ namespace v8 { |
namespace internal { |
-double ceiling(double x) { |
- // Correct as on OS X |
- if (-1.0 < x && x < 0.0) { |
- return -0.0; |
- } else { |
- return ceil(x); |
- } |
-} |
- |
- |
static Mutex* limit_mutex = NULL; |