diff options
author | Roland McGrath <roland@hack.frob.com> | 2014-12-11 13:46:21 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2014-12-11 13:47:44 -0800 |
commit | 1c4053db63e2a3470ed8ace2ddd9636f9a6e135c (patch) | |
tree | 9ea23fa846a90b210e9d9447f08f390153f4132b /stdio-common/tst-printf.c | |
parent | a1edbf3cb8095699794d6601446c0f18cfa265a8 (diff) | |
download | glibc-1c4053db63e2a3470ed8ace2ddd9636f9a6e135c.tar.gz glibc-1c4053db63e2a3470ed8ace2ddd9636f9a6e135c.tar.xz glibc-1c4053db63e2a3470ed8ace2ddd9636f9a6e135c.zip |
Eliminate -Wno-format from printf/scanf tests.
Diffstat (limited to 'stdio-common/tst-printf.c')
-rw-r--r-- | stdio-common/tst-printf.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/stdio-common/tst-printf.c b/stdio-common/tst-printf.c index 10673ce77d..d52dc1deb1 100644 --- a/stdio-common/tst-printf.c +++ b/stdio-common/tst-printf.c @@ -26,6 +26,11 @@ #endif #include <float.h> +#include <libc-internal.h> + +/* This whole file is picayune tests of corner cases of printf format strings. + The compiler warnings are not useful here. */ +DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wformat"); static void rfg1 (void); static void rfg2 (void); |