diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-10 11:37:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-10 11:37:36 +0000 |
commit | 17763865348777221912fb8527f9d327bd9ff37a (patch) | |
tree | b4a04c7c4e8e4c4cb24e88f9b526c472d261ea3f | |
parent | 26cee9a49c21e42ecf0b6a9b9940244e4d514dac (diff) | |
download | glibc-17763865348777221912fb8527f9d327bd9ff37a.tar.gz glibc-17763865348777221912fb8527f9d327bd9ff37a.tar.xz glibc-17763865348777221912fb8527f9d327bd9ff37a.zip |
Update.
* stdio-common/printf-parse.h (parse_one_spec): Add support for a and A format.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | stdio-common/printf-parse.h | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 289c42fcdf..b4ddb7ec39 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1999-06-10 Ulrich Drepper <drepper@cygnus.com> + * stdio-common/printf-parse.h (parse_one_spec): Add support for a + and A format. + * shadow/fgetspent_r.c (__fgetspent_r): Set errno to ENOENT for returning after last entry. * pwd/fgetpwent_r.c (__fgetpwent_r): Likewise. diff --git a/stdio-common/printf-parse.h b/stdio-common/printf-parse.h index 4f217abfd3..2e6f0dcd99 100644 --- a/stdio-common/printf-parse.h +++ b/stdio-common/printf-parse.h @@ -1,5 +1,5 @@ /* Internal header for parsing printf format strings. - Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of th GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -358,6 +358,8 @@ parse_one_spec (const UCHAR_T *format, size_t posn, struct printf_spec *spec, case L'f': case L'g': case L'G': + case L'a': + case L'A': if (spec->info.is_long_double) spec->data_arg_type = PA_DOUBLE|PA_FLAG_LONG_DOUBLE; else |