1 2 3 4 5 6 7 8 9 10 11 12 13
f (int b, int c) { if (b != 0 && b != 1 && c != 0) b = 0; return b; } main () { if (!f (1, 2)) abort(); exit(0); }