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

22 lines
147 B
C

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