Retro68/binutils/ld/testsuite/ld-elfweak/bar.c

17 lines
137 B
C
Raw Normal View History

2012-03-26 19:18:29 +00:00
#include <stdio.h>
extern void foo ();
extern void foobar ();
void
foo ()
{
printf ("strong foo\n");
}
void
foobar ()
{
foo ();
}