diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-23 16:53:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-23 16:53:42 +0000 |
commit | 233f5f68197f58c1e1ab06a70d6de1734c3b21db (patch) | |
tree | 645efb758082b92240890a43bd055f014a8b311c /stdio-common | |
parent | 0232a3ae6cbb1a2765b4b50d0ac9a2b5e73b1bca (diff) | |
download | glibc-233f5f68197f58c1e1ab06a70d6de1734c3b21db.tar.gz glibc-233f5f68197f58c1e1ab06a70d6de1734c3b21db.tar.xz glibc-233f5f68197f58c1e1ab06a70d6de1734c3b21db.zip |
Add %F format support.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/vfscanf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c index 0731c5656e..1d9fd3e174 100644 --- a/stdio-common/vfscanf.c +++ b/stdio-common/vfscanf.c @@ -1576,6 +1576,7 @@ __vfscanf (FILE *s, const char *format, va_list argptr) case L_('e'): /* Floating-point numbers. */ case L_('E'): case L_('f'): + case L_('F'): case L_('g'): case L_('G'): case L_('a'): |