##// END OF EJS Templates
sha1dc: avoid including the nonexistent stdint.h with Visual Studio 2008...
Matt Harbison -
r44558:b4420cea default
parent child Browse files
Show More
@@ -25,8 +25,10 b''
25 25 */
26 26
27 27 #ifndef SHA1DC_NO_STANDARD_INCLUDES
28 #if !defined(_MSC_VER) || _MSC_VER >= 1600
28 29 #include <stdint.h>
29 30 #endif
31 #endif
30 32 #ifdef SHA1DC_CUSTOM_INCLUDE_UBC_CHECK_C
31 33 #include SHA1DC_CUSTOM_INCLUDE_UBC_CHECK_C
32 34 #endif
@@ -28,7 +28,12 b' extern "C" {'
28 28 #endif
29 29
30 30 #ifndef SHA1DC_NO_STANDARD_INCLUDES
31 #if !defined(_MSC_VER) || _MSC_VER >= 1600
31 32 #include <stdint.h>
33 #else
34 /* prior to Visual Studio 2010 */
35 typedef unsigned __int32 uint32_t;
36 #endif
32 37 #endif
33 38
34 39 #define DVMASKSIZE 1
General Comments 0
You need to be logged in to leave comments. Login now