mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
15 lines
177 B
C
15 lines
177 B
C
extern int foo (void) __attribute__((section (".gnu.linkonce.t.1"), weak,
|
|
__visibility__ ("hidden")));
|
|
|
|
int
|
|
foo (void)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
int
|
|
foo2 (void)
|
|
{
|
|
return 1;
|
|
}
|