1extern void ref ();
2extern void foo ();
3
4void
5_start ()
6{
7  foo ();
8  ref ();
9}
10
11void
12__start ()
13{
14  _start ();
15}
16
17void
18start ()
19{
20  __start ();
21}
22