1 2 3 4 5 6 7 8 9
unsigned a; int foo(void) { if (a == 1) printf("It's 1\n"); } int bar(void) { if (a == 2) printf("It's 2\n"); /* comment */ }