Retro68/binutils/ld/testsuite/ld-elfvers/vers27d3.c
2012-03-26 21:18:29 +02:00

22 lines
147 B
C

extern void ref ();
extern void foo ();
void
_start ()
{
foo ();
ref ();
}
void
__start ()
{
_start ();
}
void
start ()
{
__start ();
}