]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - ld/testsuite/ld-elfvers/vers27d3.c
Import the binutils-2_15-branch from the sourceware CVS repository,
[FreeBSD/FreeBSD.git] / ld / testsuite / ld-elfvers / vers27d3.c
1 extern void ref ();
2 extern void foo ();
3
4 void
5 _start ()
6 {
7   foo ();
8   ref ();
9 }
10
11 void
12 __start ()
13 {
14   _start ();
15 }
16
17 void
18 start ()
19 {
20   __start ();
21 }