aboutsummaryrefslogtreecommitdiff
path: root/stdio-common/tst-fphex.c
AgeCommit message (Collapse)AuthorFilesLines
2024-12-22stdio: Suppress %Z format for clangAdhemerval Zanella1-0/+5
clang does not handle %Z on print, and just suppressing -Wformat-invalid-specifier might trigger another warning for extra arguments (since %Z is ignored). So suppress -Wformat-extra-args as well. For tst-fphex.c a heavy hammer is used since the printf is more complex and clang throws a more generic warning. Reviewed-by: Sam James <sam@gentoo.org>
2017-11-02stdio-common: Use array_length and array_end macrosFlorian Weimer1-4/+3
2012-03-08Clean up tst-fphex testUlrich Drepper1-16/+13
2012-03-08Enhance fphex test.Marek Polacek1-18/+42
2003-06-25* posix/tst-nanosleep.c: Include <time.h> for nanosleep Andreas Jaeger1-1/+1
declaration. * stdio-common/tst-fphex.c: Fix format string. * posix/tst-nanosleep.c: Include <time.h> for nanosleep declaration. * stdio-common/tst-fphex.c: Fix format string.
2002-10-24* stdio-common/tst-fphex.c: New file.Roland McGrath1-0/+51
* stdio-common/Makefile (tests): Add tst-fphex. * sysdeps/generic/printf_fphex.c (__printf_fphex): Fix initialization of WNUMEND. Fix counting of decimal point in WIDTH. Print '0' pad chars always before the value digits. Reported by James Antill <james.antill@redhat.com>.