blob: b99d54c7e16205af44b2b609b2a23a99818bc707 [file] [log] [blame]
/* Test __STDC_VERSION__ for C99. */
/* { dg-do compile } */
/* { dg-options "-std=c99 -pedantic-errors" } */
#if __STDC_VERSION__ == 199901L
int i;
#else
#error "Bad __STDC_VERSION__."
#endif