From bb7a4c2a00f6da4ff63f24b2db2a0aa0c44eb63f Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 5 Apr 2016 16:23:39 +0000 Subject: * math.c (ruby_lgamma_r): mswin's lgamma_r also seems to be wrong. cf. [Bug #12249] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'math.c') diff --git a/math.c b/math.c index 9e97f3a2d2..23c6210373 100644 --- a/math.c +++ b/math.c @@ -750,7 +750,7 @@ ruby_tgamma(const double d) #define tgamma(d) ruby_tgamma(d) #endif -#if defined __MINGW32__ || defined __APPLE__ +#if defined _WIN32 || defined __APPLE__ static inline double ruby_lgamma_r(const double d, int *sign) { -- cgit v1.2.1