dm.c 144 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 void bar(void); void foo(int n) { if (n) { bar(); } else { while (1) {} } } void quack(void) { foo(0); } void quack2(void) { foo(4); }