]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-elf/init.c
bfd/
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-elf / init.c
CommitLineData
24edc24d
L
1#include <stdio.h>
2
3static void
4init_0 (void)
5{
6 printf ("init array 0\n");
7}
8
9static void
10init_1 (void)
11{
12 printf ("init array 1\n");
13}
14
15static void
16init_2 (void)
17{
18 printf ("init array 2\n");
19}
20
21void (*const init_array []) (void)
22 __attribute__ ((section (".init_array"),
23 aligned (sizeof (void *)))) =
24{
25 &init_0,
26 &init_1,
27 &init_2
28};
29
30int
31main (void)
32{
33 return 0;
34}