diff options
author | Szabolcs Nagy <nsz@port70.net> | 2012-11-13 00:49:55 +0100 |
---|---|---|
committer | Szabolcs Nagy <nsz@port70.net> | 2012-11-13 00:49:55 +0100 |
commit | e2fe959fe2a450f74271d4d3c4b0d9456f889125 (patch) | |
tree | 04e57472b5e0d9dfec6580e25f8f4e4a4d402315 /src/math/log2l.c | |
parent | 52bcf3f5fb3251dca4df5b97b01543160340b31b (diff) | |
download | musl-e2fe959fe2a450f74271d4d3c4b0d9456f889125.tar.gz musl-e2fe959fe2a450f74271d4d3c4b0d9456f889125.tar.bz2 musl-e2fe959fe2a450f74271d4d3c4b0d9456f889125.tar.xz musl-e2fe959fe2a450f74271d4d3c4b0d9456f889125.zip |
math: raise flags in logl.c on <= 0 arguments
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)) |