cmake/Tests/RunCMake/try_compile/CStandardGNU.c
2018-08-09 18:06:22 +02:00

11 lines
165 B
C

#if __STDC_VERSION__ != 199901L
# error "Not GNU C 99 mode!"
#endif
#ifndef __STRICT_ANSI__
# error "Not GNU C strict ANSI!"
#endif
int main(void)
{
return 0;
}