diff options
Diffstat (limited to 'include/elf.h')
| -rw-r--r-- | include/elf.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/include/elf.h b/include/elf.h index 4ea3926f8..d0febc58c 100644 --- a/include/elf.h +++ b/include/elf.h @@ -41,6 +41,11 @@  #include <inttypes.h>  #elif defined(__linux__) && defined(USE_HOSTCC)  #include <stdint.h> +#elif defined(__WIN32__) +#include <unistd.h> +typedef 	 unsigned char	 uint8_t; +typedef 	 unsigned short  uint16_t; +typedef 	 unsigned int	 uint32_t;  #endif  /* |