about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-09-05 11:58:21 +0000
committerAndreas Jaeger <aj@suse.de>2000-09-05 11:58:21 +0000
commiteab1830e5f2efc7dc5998fad1359d8e85bbfd4b0 (patch)
treea53cd1937d31d2a53a096ca95191687b02cfa1fd
parent1e9877a77cfe43a682c4e6d4c9678a4542b6d6fc (diff)
downloadglibc-eab1830e5f2efc7dc5998fad1359d8e85bbfd4b0.tar.gz
glibc-eab1830e5f2efc7dc5998fad1359d8e85bbfd4b0.tar.xz
glibc-eab1830e5f2efc7dc5998fad1359d8e85bbfd4b0.zip
Update
	* libio/oldiofsetpos64.c: Check for compatibility with glibc 2.1.
	* libio/oldiofgetpos64.c: Likewise.
-rw-r--r--ChangeLog3
-rw-r--r--stdlib/tst-strtod.c8
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f3ea3c126c..062729f44d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-09-05  Andreas Jaeger  <aj@suse.de>
 
+	* libio/oldiofsetpos64.c: Check for compatibility with glibc 2.1.
+	* libio/oldiofgetpos64.c: Likewise.
+
 	* sysdeps/sparc/sparc64/soft-fp/Versions: Use version glibc 2.2.
 
 	* soft-fp/configure: Remove.
diff --git a/stdlib/tst-strtod.c b/stdlib/tst-strtod.c
index c6a4b0914f..ffd3975020 100644
--- a/stdlib/tst-strtod.c
+++ b/stdlib/tst-strtod.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1991,96,97,98,99,2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -56,6 +56,12 @@ static const struct ltest tests[] =
     { "0x00.0050p17", 160.0, '\0', 0 },
     { "0x00.0028p18", 160.0, '\0', 0 },
     { "0x00.0014p19", 160.0, '\0', 0 },
+    { "0x1p-1023",
+      1.11253692925360069154511635866620203210960799023116591527666e-308,
+      '\0', 0 },
+    { "0x0.8p-1022",
+      1.11253692925360069154511635866620203210960799023116591527666e-308,
+      '\0', 0 },
     { NULL, 0, '\0', 0 }
   };