aboutsummaryrefslogtreecommitdiffstats
path: root/math.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-06 01:17:55 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-06 01:17:55 +0000
commitb79867b1014acd84e2fed42e550c90f9f5c3c36b (patch)
tree12ca9bb4ca84999c676c44799b495825bf9f35c9 /math.c
parente3991677c1b3c266a32044fefdade00ef7aae1d3 (diff)
downloadruby-b79867b1014acd84e2fed42e550c90f9f5c3c36b.tar.gz
lgamma_r.c: fix at -0.0
* math.c (ruby_lgamma_r): missing/lgamma_r.c is used on Windows, since msvcrt does not provide it. * missing/lgamma_r.c (lgamma_r): fix lgamma(-0.0). [ruby-core:74823] [Bug #12249] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54496 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'math.c')
-rw-r--r--math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math.c b/math.c
index 23c6210373..8c16c76c3b 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 _WIN32 || defined __APPLE__
+#if defined __APPLE__
static inline double
ruby_lgamma_r(const double d, int *sign)
{