URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [format/] [ms_no-y2k-1.c] - Rev 826
Compare with Previous | Blame | View Log
/* Test for warnings for Y2K problems not being on by default. */ /* Origin: Joseph Myers <jsm28@cam.ac.uk> */ /* { dg-do compile { target { *-*-mingw* } } } */ /* { dg-options "-std=gnu99 -Wformat" } */ #define USE_SYSTEM_FORMATS #include "format.h" void foo (char *s, size_t m, const struct tm *tp) { strftime (s, m, "%y%c%x", tp); }