mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +00:00
16 lines
171 B
C
16 lines
171 B
C
|
extern int foo (void) __attribute__((section (".gnu.linkonce.t.1"), weak));
|
||
|
|
||
|
int
|
||
|
foo (void)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
extern int foo2 (void);
|
||
|
|
||
|
int
|
||
|
bar (void)
|
||
|
{
|
||
|
return foo2 ();
|
||
|
}
|