Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/ld/testsuite/ld-elfvers/vers27d3.c
2023-03-06 14:48:14 +01:00

22 lines
147 B
C

extern void ref ();
extern void foo ();
void
_start ()
{
foo ();
ref ();
}
void
__start ()
{
_start ();
}
void
start ()
{
__start ();
}