From 558c362f607958d9e04346f3afda09461a135c32 Mon Sep 17 00:00:00 2001 From: mrkn Date: Wed, 16 Nov 2016 04:25:37 +0000 Subject: math.c: remove needless ifdef clause * math.c (ifdef M_PI): M_PI is eventually defined in missing.h even if math.h doesn't supply it. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56810 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- math.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/math.c b/math.c index e1c0e1b1ad..6caf550be4 100644 --- a/math.c +++ b/math.c @@ -989,12 +989,8 @@ InitVM_Math(void) rb_mMath = rb_define_module("Math"); rb_eMathDomainError = rb_define_class_under(rb_mMath, "DomainError", rb_eStandardError); -#ifdef M_PI /* Definition of the mathematical constant PI as a Float number. */ rb_define_const(rb_mMath, "PI", DBL2NUM(M_PI)); -#else - rb_define_const(rb_mMath, "PI", DBL2NUM(atan(1.0)*4.0)); -#endif #ifdef M_E /* Definition of the mathematical constant E (e) as a Float number. */ -- cgit v1.2.3