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