OSDN Git Service

* Makefile.in (local-distclean): Remove leftover built files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / format-no-y2k-1.c
1 /* Test for warnings for Y2K problems being disabled by -Wno-format-y2k.  */
2 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
3 /* { dg-do compile } */
4 /* { dg-options "-std=gnu99 -Wformat -Wno-format-y2k" } */
5
6 typedef __SIZE_TYPE__ size_t;
7
8 struct tm;
9
10 extern size_t strftime (char *, size_t, const char *, const struct tm *);
11
12 void
13 foo (char *s, size_t m, const struct tm *tp)
14 {
15   strftime (s, m, "%y%c%x", tp);
16 }