Blame bits/elfclass.h

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