From: Peter Tyser Date: Fri, 13 Mar 2009 23:54:28 +0000 (-0500) Subject: elf.h: Use stdint.h to provide standard typedefs for WIN32 X-Git-Tag: v2009.06-rc1~100 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=24d2ae5e9debe4b75151a55251031a14477fa875;p=oweals%2Fu-boot.git elf.h: Use stdint.h to provide standard typedefs for WIN32 The original code provided an incomplete set of typedefs for WIN32 compiles and replicated the standard typedefs that are already provided by stdint.h Signed-off-by: Peter Tyser --- diff --git a/include/elf.h b/include/elf.h index a9839df3f2..f6403881bf 100644 --- a/include/elf.h +++ b/include/elf.h @@ -39,13 +39,8 @@ defined(__sun__) || \ defined(__APPLE__) #include -#elif defined(__linux__) && defined(USE_HOSTCC) +#elif (defined(__linux__) && defined(USE_HOSTCC)) || defined(__WIN32__) #include -#elif defined(__WIN32__) -#include -typedef unsigned char uint8_t; -typedef unsigned short uint16_t; -typedef unsigned int uint32_t; #endif /*