Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / format / ms_no-y2k-1.c
blobaed760aab5f9521ddbe5e95af66e66b1764c382a
1 /* Test for warnings for Y2K problems not being on by default. */
2 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
3 /* { dg-do compile { target { *-*-mingw* } } } */
4 /* { dg-options "-std=gnu99 -Wformat" } */
6 #define USE_SYSTEM_FORMATS
7 #include "format.h"
9 void
10 foo (char *s, size_t m, const struct tm *tp)
12 strftime (s, m, "%y%c%x", tp);