blob: fc1fba363a59ada42f52ff8e6b0e0a1a0c221ee0 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#if __WORDSIZE == 64
2struct link_map_machine
3 {
4 Elf64_Addr plt; /* Address of .plt + 0x2e */
5 Elf64_Addr gotplt; /* Address of .got + 0x18 */
6 };
7#else
8struct link_map_machine
9 {
10 Elf32_Addr plt; /* Address of .plt + 0x2c */
11 Elf32_Addr gotplt; /* Address of .got + 0x0c */
12 };
13#endif