Index: Source/wtf/MathExtras.h |
diff --git a/Source/wtf/MathExtras.h b/Source/wtf/MathExtras.h |
index 33de325dc7a30088da0607fc3b0dc6fd3712103c..736a98bb781ee05c0f972dbd8d230df742d07368 100644 |
--- a/Source/wtf/MathExtras.h |
+++ b/Source/wtf/MathExtras.h |
@@ -49,7 +49,7 @@ const float piOverTwoFloat = static_cast<float>(M_PI_2); |
const double piOverFourDouble = M_PI_4; |
const float piOverFourFloat = static_cast<float>(M_PI_4); |
-#if OS(DARWIN) |
+#if OS(MACOSX) |
// Work around a bug in the Mac OS X libc where ceil(-0.1) return +0. |
inline double wtf_ceil(double x) { return copysign(ceil(x), x); } |