mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-13 03:29:50 +00:00
15 lines
115 B
C
15 lines
115 B
C
int foo;
|
|
__asm__ (".hidden foo");
|
|
|
|
int
|
|
_start (void)
|
|
{
|
|
return foo;
|
|
}
|
|
|
|
int
|
|
__start (void)
|
|
{
|
|
return _start ();
|
|
}
|