cmake/Tests/RunCMake/try_compile/CStandardGNU.c

11 lines
165 B
C
Raw Normal View History

2017-04-14 19:02:05 +02:00
#if __STDC_VERSION__ != 199901L
2018-08-09 18:06:22 +02:00
# error "Not GNU C 99 mode!"
2017-04-14 19:02:05 +02:00
#endif
#ifndef __STRICT_ANSI__
2018-08-09 18:06:22 +02:00
# error "Not GNU C strict ANSI!"
2017-04-14 19:02:05 +02:00
#endif
int main(void)
{
return 0;
}