aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-12-04 07:15:24 +0000
committerUlrich Drepper <drepper@redhat.com>2000-12-04 07:15:24 +0000
commit09881ccc3250a2fe1b55b99f8d432efc8cb7b523 (patch)
treed53c074c5d0b91a04112c99569f9ac5811baf030
parentf8da88b080504633c5442a4fcd234cb63912a7bf (diff)
downloadglibc-09881ccc3250a2fe1b55b99f8d432efc8cb7b523.zip
glibc-09881ccc3250a2fe1b55b99f8d432efc8cb7b523.tar.gz
glibc-09881ccc3250a2fe1b55b99f8d432efc8cb7b523.tar.bz2
Update.
* sysdeps/i386/fpu/bits/mathdef.h (DECIMAL_DIG): Correct value. Reported by Fred J. Tydeman <tydeman@tybor.com>.
-rw-r--r--ChangeLog3
-rw-r--r--sysdeps/i386/fpu/bits/mathdef.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b083cef..ebb0ace 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2000-12-03 Ulrich Drepper <drepper@redhat.com>
+ * sysdeps/i386/fpu/bits/mathdef.h (DECIMAL_DIG): Correct value.
+ Reported by Fred J. Tydeman <tydeman@tybor.com>.
+
* sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Hopefully fix
the handling of denormalized numbers.
diff --git a/sysdeps/i386/fpu/bits/mathdef.h b/sysdeps/i386/fpu/bits/mathdef.h
index 31ca7c7..8301db5 100644
--- a/sysdeps/i386/fpu/bits/mathdef.h
+++ b/sysdeps/i386/fpu/bits/mathdef.h
@@ -42,6 +42,6 @@ typedef long double double_t; /* `double' expressions are evaluated as
# define FP_ILOGBNAN (-2147483647 - 1)
/* Number of decimal digits for the `long double' type. */
-# define DECIMAL_DIG 18
+# define DECIMAL_DIG 21
#endif /* ISO C99 */