diff options
author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-02 16:02:52 +0000 |
---|---|---|
committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-02 16:02:52 +0000 |
commit | ac6fd9384d05d20d2acbda789e06335468589c6d (patch) | |
tree | 08dd993c47458e1161338e063e3120cefaa579b9 | |
parent | b892e3dd1bc531bd0b53fd8999454a658f18e715 (diff) |
* missing/tgamma.c (tgamma): remove unused variable.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17823 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | missing/tgamma.c | 1 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu Jul 3 01:01:57 2008 Yusuke Endoh <[email protected]> + + * missing/tgamma.c (tgamma): remove unused variable. + Thu Jul 3 00:18:00 2008 Masaki Suketa <[email protected]> * ext/win32ole/win32ole.c: avoid creating Ruby object during diff --git a/missing/tgamma.c b/missing/tgamma.c index 8ed98e9ad8..5e306fbb43 100644 --- a/missing/tgamma.c +++ b/missing/tgamma.c @@ -24,7 +24,6 @@ double tgamma(double x) return 1/x < 0 ? -HUGE_VAL : HUGE_VAL; } if (x < 0) { - int sign; static double zero = 0.0; double i, f; f = modf(-x, &i); |