mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08: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;
|
||
|
}
|