diff options
Diffstat (limited to 'src/math/log2l.c')
-rw-r--r-- | src/math/log2l.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/math/log2l.c b/src/math/log2l.c index 76a7aacd..345b395d 100644 --- a/src/math/log2l.c +++ b/src/math/log2l.c @@ -108,8 +108,7 @@ static const long double S[4] = { long double log2l(long double x) { - long double z; - long double y; + long double y, z; int e; if (isnan(x)) |