Blame bits/elfclass.h

Packit Service 82fcde
/* This file specifies the native word size of the machine, which indicates
Packit Service 82fcde
   the ELF file class used for executables and shared objects on this
Packit Service 82fcde
   machine.  */
Packit Service 82fcde
Packit Service 82fcde
#ifndef _LINK_H
Packit Service 82fcde
# error "Never use <bits/elfclass.h> directly; include <link.h> instead."
Packit Service 82fcde
#endif
Packit Service 82fcde
Packit Service 82fcde
#include <bits/wordsize.h>
Packit Service 82fcde
Packit Service 82fcde
#define __ELF_NATIVE_CLASS __WORDSIZE
Packit Service 82fcde
Packit Service 82fcde
/* The entries in the .hash table always have a size of 32 bits.  */
Packit Service 82fcde
typedef uint32_t Elf_Symndx;