summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/try_compile/CStandardGNU.c
blob: ac26c15e9eda02046660cae198c5d351eb58ad77 (plain)
1
2
3
4
5
6
7
8
9
10
#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;
}