C
x
24
1
2
struct x {3
void* string_table;4
int string_table_length;5
} *filedata;6
struct a {7
int sh_name;8
void* sh_type;9
} *section;10
11
const char* _(const char* aaa) { (void)aaa; return NULL; }12
void print_symbol(int aaa, const struct a* bbb) { (void)aaa; (void)bbb; }13
14
15
16
17
18
19
20
21
int main(){22
print_symbol (-17, CUSTOM_SECTION_NAME_PRINT (section));23
}24
$ gcc prog.c -Wall -Wextra -std=gnu11
Start
0
Finish