1void *g, *c;
2int a, b;
3
4int f()
5{
6  if ((0 == a) != (b || g == c))
7    return 1;
8  return 0;
9}
10
11