Subversion Repositories HelenOS

Rev

Rev 3386 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3386 Rev 4581
Line 35... Line 35...
35
#ifndef KERN_mips32_ELF_H_
35
#ifndef KERN_mips32_ELF_H_
36
#define KERN_mips32_ELF_H_
36
#define KERN_mips32_ELF_H_
37
 
37
 
38
#define ELF_MACHINE     EM_MIPS
38
#define ELF_MACHINE  EM_MIPS
39
 
39
 
40
#ifdef BIG_ENDIAN
40
#ifdef __BE__
41
#  define ELF_DATA_ENCODING ELFDATA2MSB
41
    #define ELF_DATA_ENCODING  ELFDATA2MSB
42
#else
42
#else
43
#  define ELF_DATA_ENCODING ELFDATA2LSB
43
    #define ELF_DATA_ENCODING  ELFDATA2LSB
44
#endif
44
#endif
45
 
45