From ef23498de590d00df11a9d20b049d0d456284254 Mon Sep 17 00:00:00 2001 From: Fabio Scotoni <34964387+fscoto@users.noreply.github.com> Date: Sat, 30 Nov 2019 08:49:23 +0100 Subject: [PATCH] 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. --- src/monocypher.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 /// -- 2.47.3