##// END OF EJS Templates
sha1dc: manually define integer types on msvc 2008...
Gregory Szorc -
r44540:ef36156e default
parent child Browse files
Show More
@@ -13,7 +13,14 b' extern "C" {'
13 #endif
13 #endif
14
14
15 #ifndef SHA1DC_NO_STANDARD_INCLUDES
15 #ifndef SHA1DC_NO_STANDARD_INCLUDES
16 /* PY27 this can be changed to a straight #include once Python 2.7 is
17 dropped, since this is for MSVC 2008 support. */
18 #if !defined(_MSC_VER) || _MSC_VER >= 1600
16 #include <stdint.h>
19 #include <stdint.h>
20 #else
21 typedef unsigned __int32 uint32_t;
22 typedef unsigned __int64 uint64_t;
23 #endif
17 #endif
24 #endif
18
25
19 /* sha-1 compression function that takes an already expanded message, and additionally store intermediate states */
26 /* sha-1 compression function that takes an already expanded message, and additionally store intermediate states */
General Comments 0
You need to be logged in to leave comments. Login now