Retro68/binutils/ld/testsuite/ld-elfvers/vers27d3.c

22 lines
147 B
C
Raw Normal View History

2012-03-26 19:18:29 +00:00
extern void ref ();
extern void foo ();
void
_start ()
{
foo ();
ref ();
}
void
__start ()
{
_start ();
}
void
start ()
{
__start ();
}