mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
95b4a16ea5
* ld-elfvers/vers27d3.c (__start): New. (start): New.
22 lines
147 B
C
22 lines
147 B
C
extern void ref ();
|
|
extern void foo ();
|
|
|
|
void
|
|
_start ()
|
|
{
|
|
foo ();
|
|
ref ();
|
|
}
|
|
|
|
void
|
|
__start ()
|
|
{
|
|
_start ();
|
|
}
|
|
|
|
void
|
|
start ()
|
|
{
|
|
__start ();
|
|
}
|