diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-01-11 18:56:38 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-01-11 18:56:38 +0000 |
commit | c54be3804064662fcbd582c8c7e5a3425681b5ac (patch) | |
tree | ab34525d0525c829f202b499772ab4d62ca3ae3c /include/elf.h | |
parent | 27d501fdbf0c6932e6170e8dece4d178d912bf94 (diff) |
replace yet another _dl_malloc + _dl_memset with _dl_zalloc
Diffstat (limited to 'include/elf.h')
-rw-r--r-- | include/elf.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/elf.h b/include/elf.h index 3e174bccf..0a58e0eec 100644 --- a/include/elf.h +++ b/include/elf.h @@ -124,8 +124,6 @@ typedef struct # define ELFMAG_U32 ((uint32_t)(ELFMAG0 + 0x100 * (ELFMAG1 + (0x100 * (ELFMAG2 + 0x100 * ELFMAG3))))) #elif __BYTE_ORDER == __BIG_ENDIAN # define ELFMAG_U32 ((uint32_t)((((ELFMAG0 * 0x100) + ELFMAG1) * 0x100 + ELFMAG2) * 0x100 + ELFMAG3)) -#else -# error Unknown host byte order! #endif #define EI_CLASS 4 /* File class byte index */ |