Update year range in copyright notice of binutils files
[deliverable/binutils-gdb.git] / ld / testsuite / ld-selective / 2.c
CommitLineData
252b5132
RH
1/* Normally we should loose foo and keep _start and _init.
2 With -u foo, we should keep that as well. */
3
4void _start() __asm__("_start");
5void _start()
6{
7}
8
9void __attribute__((section(".init")))
10_init()
11{
12}
13
14int foo() __asm__("foo");
15int foo()
16{
17 static int x = 1;
18 return x++;
19}
This page took 0.81395 seconds and 4 git commands to generate.