aboutsummaryrefslogtreecommitdiff
path: root/include/stdint.h
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-12-29 12:20:21 +0000
committermarha <marha@users.sourceforge.net>2010-12-29 12:20:21 +0000
commit053f5dfd42ade05252e586a282e34906db10828d (patch)
treede215580ce205409a6d810a005c6c5909f3145d1 /include/stdint.h
parent04ceb8c4a0cca3d8682f094d1d6faed8f693afb5 (diff)
parent807c6931fe683fd844ceec1b023232181e6aae03 (diff)
downloadvcxsrv-053f5dfd42ade05252e586a282e34906db10828d.tar.gz
vcxsrv-053f5dfd42ade05252e586a282e34906db10828d.tar.bz2
vcxsrv-053f5dfd42ade05252e586a282e34906db10828d.zip
svn merge ^/branches/released .
Diffstat (limited to 'include/stdint.h')
-rw-r--r--include/stdint.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/stdint.h b/include/stdint.h
index 96560d7a7..c5ef47ae3 100644
--- a/include/stdint.h
+++ b/include/stdint.h
@@ -17,15 +17,15 @@ details. */
#ifndef __int8_t_defined
#define __int8_t_defined
-typedef signed char int8_t;
-typedef short int16_t;
-typedef int int32_t;
+typedef __int8 int8_t;
+typedef __int16 int16_t;
+typedef __int32 int32_t;
typedef __int64 int64_t;
#endif
-typedef unsigned char uint8_t;
-typedef unsigned short uint16_t;
-typedef unsigned int uint32_t;
+typedef unsigned __int8 uint8_t;
+typedef unsigned __int16 uint16_t;
+typedef unsigned __int32 uint32_t;
/* Minimum-width integer types */
@@ -162,12 +162,12 @@ typedef unsigned long long uintmax_t;
#define INT8_C(x) x
#define INT16_C(x) x
#define INT32_C(x) x ## L
-#define INT64_C(x) x ## LL
+#define INT64_C(__val) __val##i64
#define UINT8_C(x) x
#define UINT16_C(x) x
#define UINT32_C(x) x ## UL
-#define UINT64_C(x) x ## ULL
+#define UINT64_C(__val) __val##ui64
/* Macros for greatest-width integer constant expressions */