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)