]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - ld/testsuite/ld-elfweak/bar.c
Import the binutils-2_15-branch from the sourceware CVS repository,
[FreeBSD/FreeBSD.git] / ld / testsuite / ld-elfweak / bar.c
1 #include <stdio.h>
2
3 extern void foo ();
4 extern void foobar ();
5
6 void
7 foo ()
8 {
9   printf ("strong foo\n");
10 }
11
12 void
13 foobar ()
14 {
15   foo ();
16 }