mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
15 lines
111 B
C
15 lines
111 B
C
|
int foo;
|
||
|
asm (".hidden foo");
|
||
|
|
||
|
int
|
||
|
_start (void)
|
||
|
{
|
||
|
return foo;
|
||
|
}
|
||
|
|
||
|
int
|
||
|
__start (void)
|
||
|
{
|
||
|
return _start ();
|
||
|
}
|