aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/223 persubproject options/subprojects/sub2/foo.c
blob: cf7201b92bf9301dcb0e67ce6b03f3397131d938 (plain)
1
2
3
4
5
6
7
8
9
int foo(void);

#ifdef __GNUC__
#warning This should not produce error
#endif

int foo(void) {
  return 0;
}