1int a;
2int (*b)(), (*c)();
3int fn1(int p1) {
4  if (a)
5    return 0;
6  if (p1) {
7    c();
8    b();
9  }
10}
11void fn2() { fn1(0); }
12