Just use stdint.h even with MSVC

This commit is contained in:
Manuel Pégourié-Gonnard 2015-04-15 11:53:16 +02:00
parent b85725c958
commit ab22910191
17 changed files with 16 additions and 114 deletions

View file

@ -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. */