include/elf/
[deliverable/binutils-gdb.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 }
This page took 0.029641 seconds and 4 git commands to generate.