xref: /freebsd-13-stable/contrib/unifdef/tests/if6.c (revision cf1b93786f876d500dadc1cf65bee663be3a4d35)
1 #if F1
f1()2 int f1() { return 0; }
3 #elif F2
f2()4 int f2() { return 0; }
5 #elif F3
f3()6 int f3() { return 0; }
7 #elif F4
f4()8 int f4() { return 0; }
9 #else
f()10 int f() { return 0; }
11 #endif
12