commit | 9386664543edb5cf9adc17f96044292475010f7f | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Mon Jun 22 19:21:23 2015 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Mon Jun 22 23:41:26 2015 +0200 |
tree | b182dad20cf27e8352e2a3066586d95f36941708 | |
parent | e7e89844d6341024fbf96a956adecd6a326b8114 [diff] [blame] |
Move from inttypes.h to stdint.h Some toolchains do not have inttypes.h, and we only need stdint.h which is a subset of it.
diff --git a/library/ssl_cli.c b/library/ssl_cli.c index 58ca440..e0ffbc6 100644 --- a/library/ssl_cli.c +++ b/library/ssl_cli.c
@@ -46,7 +46,7 @@ #include <basetsd.h> typedef UINT32 uint32_t; #else -#include <inttypes.h> +#include <stdint.h> #endif #if defined(MBEDTLS_HAVE_TIME)