blob: b265880906334bc75a0cf5aa9fd409b6fd411c3e [file] [log] [blame]
extern void ref ();
extern void foo ();
void
_start ()
{
foo ();
ref ();
}
void
__start ()
{
_start ();
}
void
start ()
{
__start ();
}