Browse Source

math: remove an unused variable from modfl

Szabolcs Nagy 11 years ago
parent
commit
b9cd1d4d50
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/math/modfl.c

+ 0 - 1
src/math/modfl.c

@@ -14,7 +14,6 @@ long double modfl(long double x, long double *iptr)
 long double modfl(long double x, long double *iptr)
 {
 	union ldshape u = {x};
-	uint64_t mask;
 	int e = (u.i.se & 0x7fff) - 0x3fff;
 	int s = u.i.se >> 15;
 	long double absx;