summaryrefslogtreecommitdiff
path: root/lib/ldexpl.c
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2007-04-03 03:52:05 +0000
committerEric Blake <ebb9@byu.net>2007-04-03 03:52:05 +0000
commit8f26306d823676b6419d018f87d70fbd0b96e4d9 (patch)
tree10416f8569adab2c17474203ceccf5cbbe996cf5 /lib/ldexpl.c
parent66825407ef7b4d90f146b32093c6c11559a16e21 (diff)
downloadgnulib-8f26306d823676b6419d018f87d70fbd0b96e4d9.tar.gz
Make ldexpl truly independent of libm
Diffstat (limited to 'lib/ldexpl.c')
-rw-r--r--lib/ldexpl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ldexpl.c b/lib/ldexpl.c
index bb16be66b6..bce2a082f9 100644
--- a/lib/ldexpl.c
+++ b/lib/ldexpl.c
@@ -26,7 +26,7 @@
#include <float.h>
#include "fpucw.h"
-#include "isnanl.h"
+#include "isnanl-nolibm.h"
long double
ldexpl(long double x, int exp)
@@ -52,7 +52,7 @@ ldexpl(long double x, int exp)
for (bit = 1;;)
{
/* Invariant: Here bit = 2^i, factor = 2^-2^i or = 2^2^i,
- and bit <= exp. */
+ and bit <= exp. */
if (exp & bit)
x *= factor;
bit <<= 1;