summaryrefslogtreecommitdiff
path: root/src/math/log2l.c
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2012-11-13 00:49:55 +0100
committerSzabolcs Nagy <nsz@port70.net>2012-11-13 00:49:55 +0100
commite2fe959fe2a450f74271d4d3c4b0d9456f889125 (patch)
tree04e57472b5e0d9dfec6580e25f8f4e4a4d402315 /src/math/log2l.c
parent52bcf3f5fb3251dca4df5b97b01543160340b31b (diff)
downloadmusl-e2fe959fe2a450f74271d4d3c4b0d9456f889125.tar.gz
math: raise flags in logl.c on <= 0 arguments
Diffstat (limited to 'src/math/log2l.c')
-rw-r--r--src/math/log2l.c3
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))