diff options
author | marha <marha@users.sourceforge.net> | 2010-05-19 06:46:48 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-05-19 06:46:48 +0000 |
commit | 3359060101b44baae372eb1bd783f2eb5273b595 (patch) | |
tree | ab3e31ce4646e68776458f2f9da41a818dc842fb | |
parent | 9760cb0938399b8f6080f6ca623d450eebbaad92 (diff) | |
download | vcxsrv-3359060101b44baae372eb1bd783f2eb5273b595.tar.gz vcxsrv-3359060101b44baae372eb1bd783f2eb5273b595.tar.bz2 vcxsrv-3359060101b44baae372eb1bd783f2eb5273b595.zip |
Solved VS2010 compilation problem
-rw-r--r-- | include/stdint.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 */ |