You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
251 B

Index: lib/strtod.c
--- lib/strtod.c.orig 2002-04-20 16:06:19.000000000 +0200
+++ lib/strtod.c 2004-02-11 10:40:45.000000000 +0100
@@ -604,7 +604,7 @@
if (!(x & 1)) {
k++;
x >>= 1;
- if (!x & 1)
+ if (!(x & 1))
return 32;
}
*y = x;