summaryrefslogtreecommitdiffstats
path: root/Tests/SwiftMixPCH/CMain.c
blob: 4cd78e63acb0fb1e75a68fbb5959db82f3027dd8 (plain)
1
2
3
4
5
6
7
8
9
#ifndef PCH_VALUE
#  error "PCH_VALUE not defined"
#endif

int main(void)
{
  const int value = PCH_VALUE;
  return value == 42 ? 0 : 1;
}