mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +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 ();
|
||
|
}
|