fix some warnings on VS2010 on redefining INTxx_MIN, INTxx_MAX
diff --git a/include/platform.h b/include/platform.h
index 8c1ce7b..b0d1a2d 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -32,7 +32,7 @@
 #if defined(CAPSTONE_HAS_OSXKERNEL) || (defined(_MSC_VER) && (_MSC_VER <= 1700 || defined(_KERNEL_MODE)))
 // this system does not have inttypes.h
 
-#if defined(_MSC_VER) && (_MSC_VER <= 1700 || defined(_KERNEL_MODE))
+#if defined(_MSC_VER) && (_MSC_VER < 1600 || defined(_KERNEL_MODE))
 // this system does not have stdint.h
 typedef signed char  int8_t;
 typedef signed short int16_t;