diff --git a/include/mbedtls/entropy.h b/include/mbedtls/entropy.h index d6ad8e73e..deb3c5030 100644 --- a/include/mbedtls/entropy.h +++ b/include/mbedtls/entropy.h @@ -130,7 +130,7 @@ typedef struct mbedtls_entropy_context * -1 after free. */ #if defined(MBEDTLS_ENTROPY_SHA512_ACCUMULATOR) mbedtls_sha512_context accumulator; -#else +#elif defined(MBEDTLS_ENTROPY_SHA256_ACCUMULATOR) mbedtls_sha256_context accumulator; #endif int source_count; /* Number of entries used in source. */ diff --git a/library/bignum.c b/library/bignum.c index 364332664..b7718e217 100644 --- a/library/bignum.c +++ b/library/bignum.c @@ -42,6 +42,7 @@ #include "mbedtls/platform_util.h" #include "mbedtls/error.h" +#include #include #if defined(MBEDTLS_PLATFORM_C) diff --git a/programs/fuzz/common.c b/programs/fuzz/common.c index ac39ee22f..e12ee3b8a 100644 --- a/programs/fuzz/common.c +++ b/programs/fuzz/common.c @@ -1,4 +1,5 @@ #include "common.h" +#include #include #include #include