1 2 3 4 5 6 7 8 9 10
extern void bar(void) __attribute__ (( weak )); extern void t4(void); void foo(void); void foo(void) { bar(); t4(); }