document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /* Legal values for e_type (object file type).  */
  2.  
  3. #define ET_NONE   0   /* No file type */
  4. #define ET_REL    1   /* Relocatable file */
  5. #define ET_EXEC   2   /* Executable file */
  6. #define ET_DYN    3   /* Shared object file */
  7. #define ET_CORE   4   /* Core file */
  8. #define ET_NUM    5   /* Number of defined types */
  9. #define ET_LOOS   0xfe00    /* OS-specific range start */
  10. #define ET_HIOS   0xfeff    /* OS-specific range end */
  11. #define ET_LOPROC 0xff00    /* Processor-specific range start */
  12. #define ET_HIPROC 0xffff    /* Processor-specific range end */
');