Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/ld/testsuite/ld-elfweak/bar.c

17 lines
137 B
C

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