mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +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 ();
|
|
}
|