bfd/
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elfweak / main.c
1 #include <stdio.h>
2
3 #pragma weak foo
4
5 extern void foo ();
6 extern void foobar ();
7
8 void
9 foo ()
10 {
11 printf ("weak foo\n");
12 }
13
14 int
15 main ()
16 {
17 foobar ();
18 return 0;
19 }
This page took 0.030488 seconds and 4 git commands to generate.