mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-18 11:08:26 +00: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 ();
|
|
}
|