vers27d3.c   [plain text]


extern void ref ();
extern void foo ();

void
_start ()
{
  foo ();
  ref ();
}

void
__start ()
{
  _start ();
}

void
start ()
{
  __start ();
}