aboutsummaryrefslogtreecommitdiff
path: root/include/stdint.h
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-05-19 06:46:48 +0000
committermarha <marha@users.sourceforge.net>2010-05-19 06:46:48 +0000
commit3359060101b44baae372eb1bd783f2eb5273b595 (patch)
treeab3e31ce4646e68776458f2f9da41a818dc842fb /include/stdint.h
parent9760cb0938399b8f6080f6ca623d450eebbaad92 (diff)
downloadvcxsrv-3359060101b44baae372eb1bd783f2eb5273b595.tar.gz
vcxsrv-3359060101b44baae372eb1bd783f2eb5273b595.tar.bz2
vcxsrv-3359060101b44baae372eb1bd783f2eb5273b595.zip
Solved VS2010 compilation problem
Diffstat (limited to 'include/stdint.h')
-rw-r--r--include/stdint.h2
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 */