summaryrefslogtreecommitdiff
path: root/missing/tgamma.c
diff options
context:
space:
mode:
Diffstat (limited to 'missing/tgamma.c')
-rw-r--r--missing/tgamma.c1
1 files changed, 0 insertions, 1 deletions
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);