summaryrefslogtreecommitdiffstats
path: root/missing
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-02 16:02:52 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-02 16:02:52 +0000
commit5af6a467526029cb4eab756fe38d0d3340d1adba (patch)
tree08dd993c47458e1161338e063e3120cefaa579b9 /missing
parent66e821216263b1ec136802f1a79d257d2b7348dc (diff)
downloadruby-5af6a467526029cb4eab756fe38d0d3340d1adba.tar.gz
ruby-5af6a467526029cb4eab756fe38d0d3340d1adba.tar.xz
ruby-5af6a467526029cb4eab756fe38d0d3340d1adba.zip
* missing/tgamma.c (tgamma): remove unused variable.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17823 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing')
-rw-r--r--missing/tgamma.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/missing/tgamma.c b/missing/tgamma.c
index 8ed98e9ad..5e306fbb4 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);