mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-12 12:16:04 +08:00
12 lines
146 B
C
12 lines
146 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void
|
||
|
foo (void)
|
||
|
{
|
||
|
printf ("MAIN\n");
|
||
|
}
|
||
|
|
||
|
asm (".symver foo,foo@FOO");
|
||
|
asm (".set foo_alias,foo");
|
||
|
asm (".global foo_alias");
|