aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/m68k
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-03-08 21:41:47 +0000
committerUlrich Drepper <drepper@redhat.com>1999-03-08 21:41:47 +0000
commit5be4316ea2f4bb8a59a7861b5dd3c5ebfea6a715 (patch)
treef33e10763cba76eb5dd8c5c86db7f7b07b9cc1cc /sysdeps/m68k
parent29329ef54739d84393b59058d83ba23e40ca88e9 (diff)
downloadglibc-5be4316ea2f4bb8a59a7861b5dd3c5ebfea6a715.tar
glibc-5be4316ea2f4bb8a59a7861b5dd3c5ebfea6a715.tar.gz
glibc-5be4316ea2f4bb8a59a7861b5dd3c5ebfea6a715.tar.bz2
glibc-5be4316ea2f4bb8a59a7861b5dd3c5ebfea6a715.zip
Update.
1999-03-09 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * stdlib/strtod.c (round_and_return): Fix rounding of denormals. (DENORM_EXP): New define. Use it as the exponent for a denormal. * stdlib/strtold.c: Moved to ... * sysdeps/generic/strtold.c: ... here. * sysdeps/m68k/strtold.c: New file. 1999-03-09 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * stdio-common/printf_fphex.c (__printf_fphex): Print no decimal point if the precision is zero, even if the mantissa is non-zero.
Diffstat (limited to 'sysdeps/m68k')
-rw-r--r--sysdeps/m68k/strtold.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/m68k/strtold.c b/sysdeps/m68k/strtold.c
new file mode 100644
index 0000000000..dd7fbce195
--- /dev/null
+++ b/sysdeps/m68k/strtold.c
@@ -0,0 +1,2 @@
+#define DENORM_EXP (MIN_EXP - 1)
+#include <sysdeps/generic/strtold.c>