Magellan Linux

Diff of /trunk/mkinitrd-magellan/klibc/usr/include/sys/elf32.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 814 by niro, Sat Sep 1 22:45:15 2007 UTC revision 815 by niro, Fri Apr 24 18:32:46 2009 UTC
# Line 110  typedef struct elf32_note { Line 110  typedef struct elf32_note {
110   Elf32_Word n_type; /* Content type */   Elf32_Word n_type; /* Content type */
111  } Elf32_Nhdr;  } Elf32_Nhdr;
112    
113    /* How to extract and insert information held in the st_info field.  */
114    #define ELF32_ST_BIND(val) (((unsigned char) (val)) >> 4)
115    #define ELF32_ST_TYPE(val) ((val) & 0xf)
116    
117  #endif /* _SYS_ELF32_H */  #endif /* _SYS_ELF32_H */

Legend:
Removed from v.814  
changed lines
  Added in v.815