You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

elf_x.h 186B

12345
  1. #define ARCH_ELF_CLASS ELFCLASS32
  2. #define ARCH_ELF_DATA ELFDATA2LSB
  3. #define ARCH_ELF_MACHINE_OK(x) ((x)==EM_386 || (x)==EM_486)
  4. typedef Elf32_Ehdr Elf_ehdr;
  5. typedef Elf32_Phdr Elf_phdr;