1 extern void bar () __attribute__((weak)); 2 3 int 4 main (void) 5 { 6 if (bar) 7 bar (); 8 return 0; 9 } 10