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