Home | History | Annotate | Download | only in include
      1 #ifndef ELF_H
      2 #define ELF_H
      3 
      4 #include <llvm/Support/ELF.h>
      5 // FIXME: Can't using namespace in header file!
      6 using namespace llvm::ELF;
      7 
      8 // These definitions are not defined in include/llvm/Support/ELF.h.
      9 // So we define them here.
     10 
     11 #ifndef ET_LOOS
     12 #define ET_LOOS 0xfe00
     13 #endif
     14 
     15 #ifndef ET_HIOS
     16 #define ET_HIOS 0xfeff
     17 #endif
     18 
     19 #endif // ELF_H
     20