mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
8 lines
129 B
C
8 lines
129 B
C
|
char foo_data __attribute__(( section("FOO") )) = { 0 };
|
||
|
|
||
|
extern void * __start_FOO;
|
||
|
|
||
|
void * foo() {
|
||
|
return __start_FOO;
|
||
|
}
|