Retro68/binutils/ld/testsuite/ld-elfweak/bar.c
2012-03-26 21:18:29 +02:00

17 lines
137 B
C

#include <stdio.h>
extern void foo ();
extern void foobar ();
void
foo ()
{
printf ("strong foo\n");
}
void
foobar ()
{
foo ();
}