From 3359060101b44baae372eb1bd783f2eb5273b595 Mon Sep 17 00:00:00 2001 From: marha Date: Wed, 19 May 2010 06:46:48 +0000 Subject: Solved VS2010 compilation problem --- include/stdint.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/stdint.h b/include/stdint.h index b22c349d4..96560d7a7 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -19,11 +19,13 @@ details. */ #define __int8_t_defined typedef signed char int8_t; typedef short int16_t; +typedef int int32_t; typedef __int64 int64_t; #endif typedef unsigned char uint8_t; typedef unsigned short uint16_t; +typedef unsigned int uint32_t; /* Minimum-width integer types */ -- cgit v1.2.3