Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / format / ms_nonlit-3.c
blobe8c8933bc7cfef0daaf746e1e5b2111ce4982255
1 /* Test for warnings for non-string-literal formats. Test for strftime formats. */
2 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
3 /* { dg-do compile { target { *-*-mingw* } } } */
4 /* { dg-options "-std=gnu99 -Wformat -Wformat-nonliteral" } */
6 #define USE_SYSTEM_FORMATS
7 #include "format.h"
9 void
10 foo (char *s, size_t m, const struct tm *tp, char *fmt)
12 strftime (s, m, fmt, tp); /* { dg-warning "format string" "non-literal" } */