aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/format/no-y2k-1.c
blob: ee68cd6db9faa189e9796016c4f39a668fe31d51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Test for warnings for Y2K problems being disabled by -Wno-format-y2k.  */
/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -Wformat -Wno-format-y2k" } */

#include "format.h"

void
foo (char *s, size_t m, const struct tm *tp)
{
  strftime (s, m, "%y%c%x", tp);
}