Blame sysdeps/s390/linkmap.h

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