mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +00:00
13 lines
270 B
C
13 lines
270 B
C
extern int __start___verbose[];
|
|
extern int __stop___verbose[];
|
|
int
|
|
foo2 (void)
|
|
{
|
|
static int my_var __attribute__((used, section("__verbose"))) = 10;
|
|
if (__start___verbose == __stop___verbose
|
|
|| __start___verbose[0] != 10)
|
|
return -1;
|
|
else
|
|
return 0;
|
|
}
|