Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasimir666 <casimir666@users.sourceforge.net>2008-06-04 01:53:02 +0400
committerCasimir666 <casimir666@users.sourceforge.net>2008-06-04 01:53:02 +0400
commit7e3743ae01841ae6a3059ed33bdfedda918da7cf (patch)
tree4e61045fc15402f29c89bcf6b6ebc6bb81a49b67 /include/stdint.h
parent940a6edf910cfe457e525c33b0dbcbb1d2a3c1d1 (diff)
Various fixes
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@545 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'include/stdint.h')
-rw-r--r--include/stdint.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/stdint.h b/include/stdint.h
index ffa855f5e..05b019a39 100644
--- a/include/stdint.h
+++ b/include/stdint.h
@@ -77,11 +77,15 @@ typedef uint64_t uint_least64_t;
// 7.18.1.3 Fastest minimum-width integer types
typedef int8_t int_fast8_t;
+#ifndef _WIN64
typedef int16_t int_fast16_t;
+#endif
typedef int32_t int_fast32_t;
typedef int64_t int_fast64_t;
typedef uint8_t uint_fast8_t;
+#ifndef _WIN64
typedef uint16_t uint_fast16_t;
+#endif
typedef uint32_t uint_fast32_t;
typedef uint64_t uint_fast64_t;