blob: 283615b99ae3d405ad1d58a2a8437669a0f9bb07 [file] [log] [blame]
#if __WORDSIZE == 64
struct link_map_machine
{
Elf64_Addr plt; /* Address of .plt + 0x2e */
const Elf64_Rela *jmprel; /* Address of first JMP_SLOT reloc */
};
#else
struct link_map_machine
{
Elf32_Addr plt; /* Address of .plt + 0x2c */
const Elf32_Rela *jmprel; /* Address of first JMP_SLOT reloc */
};
#endif