Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/ld/testsuite/ld-vsb/common.c

15 lines
115 B
C
Raw Normal View History

2023-03-06 14:48:14 +01:00
int foo;
__asm__ (".hidden foo");
int
_start (void)
{
return foo;
}
int
__start (void)
{
return _start ();
}