summaryrefslogtreecommitdiff
path: root/build/win32/vs9/stdint.h
diff options
context:
space:
mode:
Diffstat (limited to 'build/win32/vs9/stdint.h')
-rw-r--r--build/win32/vs9/stdint.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/build/win32/vs9/stdint.h b/build/win32/vs9/stdint.h
deleted file mode 100644
index fcab43a8..00000000
--- a/build/win32/vs9/stdint.h
+++ /dev/null
@@ -1,36 +0,0 @@
-typedef signed char int8_t;
-typedef unsigned char uint8_t;
-typedef short int16_t;
-typedef unsigned short uint16_t;
-typedef int int32_t;
-typedef unsigned uint32_t;
-typedef long long int64_t;
-typedef unsigned long long uint64_t;
-typedef signed char int_least8_t;
-typedef unsigned char uint_least8_t;
-typedef short int_least16_t;
-typedef unsigned short uint_least16_t;
-typedef int int_least32_t;
-typedef unsigned uint_least32_t;
-typedef long long int_least64_t;
-typedef unsigned long long uint_least64_t;
-typedef char int_fast8_t;
-typedef unsigned char uint_fast8_t;
-typedef short int_fast16_t;
-typedef unsigned short uint_fast16_t;
-typedef int int_fast32_t;
-typedef unsigned int uint_fast32_t;
-typedef long long int_fast64_t;
-typedef unsigned long long uint_fast64_t;
-#ifdef _WIN64
-typedef __int64 intptr_t;
-#else
-typedef int intptr_t;
-#endif
-#ifdef _WIN64
-typedef unsigned __int64 uintptr_t;
-#else
-typedef unsigned int uintptr_t;
-#endif
-typedef __int64 intmax_t;
-typedef unsigned __int64 uintmax_t;