mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 18:46:30 +00:00
22 lines
147 B
C
22 lines
147 B
C
extern void ref ();
|
|
extern void foo ();
|
|
|
|
void
|
|
_start ()
|
|
{
|
|
foo ();
|
|
ref ();
|
|
}
|
|
|
|
void
|
|
__start ()
|
|
{
|
|
_start ();
|
|
}
|
|
|
|
void
|
|
start ()
|
|
{
|
|
__start ();
|
|
}
|