Blame sysdeps/s390/linkmap.h

Packit Service 82fcde
#if __WORDSIZE == 64
Packit Service 82fcde
struct link_map_machine
Packit Service 82fcde
  {
Packit Service 82fcde
    Elf64_Addr plt; /* Address of .plt + 0x2e */
Packit Service 82fcde
    const Elf64_Rela *jmprel; /* Address of first JMP_SLOT reloc */
Packit Service 82fcde
  };
Packit Service 82fcde
#else
Packit Service 82fcde
struct link_map_machine
Packit Service 82fcde
  {
Packit Service 82fcde
    Elf32_Addr plt; /* Address of .plt + 0x2c */
Packit Service 82fcde
    const Elf32_Rela *jmprel; /* Address of first JMP_SLOT reloc */
Packit Service 82fcde
  };
Packit Service 82fcde
#endif