commit | ab22910191bfbc2bd450e4e168254cae61c473d0 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Apr 15 11:53:16 2015 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Apr 15 11:58:31 2015 +0200 |
tree | 3935efc86831289da9a7ac77b8cb687f3f9be9ec | |
parent | b85725c9589c264ba8a8ab43bafedfd79f0210b6 [diff] [blame] |
Just use stdint.h even with MSVC
diff --git a/include/mbedtls/sha512.h b/include/mbedtls/sha512.h index 55112dd..6c61cc3 100644 --- a/include/mbedtls/sha512.h +++ b/include/mbedtls/sha512.h
@@ -31,12 +31,7 @@ #endif #include <stddef.h> - -#if defined(_MSC_VER) || defined(__WATCOMC__) - typedef unsigned __int64 uint64_t; -#else - #include <inttypes.h> -#endif +#include <stdint.h> #define MBEDTLS_ERR_SHA512_FILE_IO_ERROR -0x007A /**< Read/write error in file. */