]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorAndreas Jaeger <aj@suse.de>
Tue, 23 May 2000 06:37:29 +0000 (06:37 +0000)
committerAndreas Jaeger <aj@suse.de>
Tue, 23 May 2000 06:37:29 +0000 (06:37 +0000)
2000-05-23  Andreas Jaeger  <aj@suse.de>

* stdio-common/tfformat.c (sprint_doubles): Add testcase for %a.

* manual/search.texi (Array Sort Function): Document that qsort is
not necessarily in-place.

* sunrpc/rpc_main.c (parseargs): Don't accept -M and -N.
Closes PR libc/1731.

* stdio-common/tfformat.c (sprint_doubles): Add testcase for %a.

ChangeLog
manual/search.texi
stdio-common/tfformat.c

index 483c16091dc934d8d86aeadcabb838f61de95df5..4f485e1ec1e8602924e3e02b3f5ce97bc0e51d72 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2000-05-23  Andreas Jaeger  <aj@suse.de>
+
+       * stdio-common/tfformat.c (sprint_doubles): Add testcase for %a.
+
+       * manual/search.texi (Array Sort Function): Document that qsort is
+       not necessarily in-place.
+
+       * sunrpc/rpc_main.c (parseargs): Don't accept -M and -N.
+       Closes PR libc/1731.
+
+       * stdio-common/tfformat.c (sprint_doubles): Add testcase for %a.
+
 2000-05-22  Jakub Jelinek  <jakub@redhat.com>
 
        * elf/dl-load.c (_dl_init_paths): If env_path_list has 0 elements,
index e45972c7433632f1531ec67d8fbf2d14e9e159e1..4da504cc9e159d4f79f8a4a9c7b33209a703d129 100644 (file)
@@ -183,6 +183,10 @@ Functions}):
 
 The @code{qsort} function derives its name from the fact that it was
 originally implemented using the ``quick sort'' algorithm.
+
+The implementation of @code{qsort} in this library might not be an
+in-place sort and might thereby use an extra amount of memory to store
+the array.
 @end deftypefun
 
 @node Search/Sort Example
index f00d0de2536f8b81e89ac8ab2f5f9486fe647a7d..41432b2a9242c215efe9b52144b93db59d40c78d 100644 (file)
@@ -4009,6 +4009,8 @@ sprint_double_type sprint_doubles[] =
   {__LINE__, 11.25,                    "11.2", "%.1f"},
   {__LINE__, 1.75,                     "1.8", "%.1f"},
   {__LINE__, 11.75,                    "11.8", "%.1f"},
+  {__LINE__, 16,                       "0x1.0p+4", "%.1a"},
+  {__LINE__, 16,                       "0x1.00000000000000000000p+4", "%.20a"},
 
   {0 }