From c54be3804064662fcbd582c8c7e5a3425681b5ac Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 11 Jan 2009 18:56:38 +0000 Subject: replace yet another _dl_malloc + _dl_memset with _dl_zalloc --- include/elf.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'include/elf.h') 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 */ -- cgit v1.2.3