mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00:00
12 lines
199 B
C
12 lines
199 B
C
extern int __start___verbose[];
|
|
extern int __stop___verbose[];
|
|
int
|
|
foo3 (void)
|
|
{
|
|
if (__start___verbose == __stop___verbose
|
|
|| __start___verbose[0] != 6)
|
|
return -1;
|
|
else
|
|
return 0;
|
|
}
|