diff options
author | Roland McGrath <roland@gnu.org> | 1995-03-02 10:00:12 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-03-02 10:00:12 +0000 |
commit | 4933a099c29045e0615139c9a55d77862ae8ae6c (patch) | |
tree | 68c70e3e993c0646728288dc2eff4220d10f3805 /stdio | |
parent | 30e77772456f3d31373bf1bd002af5b498496e08 (diff) | |
download | glibc-4933a099c29045e0615139c9a55d77862ae8ae6c.tar.gz |
* stdlib/strtod.c: Fixes from drepper.glibc-1.09cvs/libc_1_09
[IMPLICIT_ONE]: New macro, one for IEEE754 formats.
* stdlib/strtold.c [IMPLICIT_ONE]: New macro, 0.
* stdlib/strtof.c [IMPLICIT_ONE]: New macro, 1.
* stdio/vfprintf.c: Correctly notice Z modifier.
Diffstat (limited to 'stdio')
-rw-r--r-- | stdio/vfprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio/vfprintf.c b/stdio/vfprintf.c index c480a93ab9..1b773e7b02 100644 --- a/stdio/vfprintf.c +++ b/stdio/vfprintf.c @@ -338,7 +338,7 @@ DEFUN(vfprintf, (s, format, args), /* Check for type modifiers. */ is_short = is_long = is_long_double = 0; - while (*f == 'h' || *f == 'l' || *f == 'L' || *f == 'q') + while (*f == 'h' || *f == 'l' || *f == 'L' || *f == 'q' || *f == 'Z') switch (*f++) { case 'h': |