From: Fabio Scotoni <34964387+fscoto@users.noreply.github.com> Date: Sat, 30 Nov 2019 07:49:23 +0000 (+0100) Subject: Use stdint.h over inttypes.h X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=ef23498de590d00df11a9d20b049d0d456284254;p=Monocypher.git Use stdint.h over inttypes.h Monocypher uses nothing from inttypes.h, other than stdint.h that inttypes.h indirectly includes. This seems to make clang --target=wasm32 more amenable to Monocypher in a freestanding environment. --- diff --git a/src/monocypher.h b/src/monocypher.h index 161520a..d2c8ed9 100644 --- a/src/monocypher.h +++ b/src/monocypher.h @@ -3,8 +3,8 @@ #ifndef MONOCYPHER_H #define MONOCYPHER_H -#include #include +#include //////////////////////// /// Type definitions ///