From d97f08706314a0b7e8ea5f2be6bceccd39e1dfd4 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Thu, 22 Apr 2021 14:12:45 +0200 Subject: [PATCH] Fix build failure with MSVC Reviewed-by: Paul Dale Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/14983) --- crypto/ec/curve448/arch_32/f_impl32.c | 1 + crypto/ec/curve448/arch_64/f_impl64.c | 1 + 2 files changed, 2 insertions(+) diff --git a/crypto/ec/curve448/arch_32/f_impl32.c b/crypto/ec/curve448/arch_32/f_impl32.c index 812c06d84ae..507b185f64e 100644 --- a/crypto/ec/curve448/arch_32/f_impl32.c +++ b/crypto/ec/curve448/arch_32/f_impl32.c @@ -10,6 +10,7 @@ * Originally written by Mike Hamburg */ +#include "e_os.h" #include "openssl/macros.h" #include "internal/numbers.h" diff --git a/crypto/ec/curve448/arch_64/f_impl64.c b/crypto/ec/curve448/arch_64/f_impl64.c index bdafc0de925..764d911dfb1 100644 --- a/crypto/ec/curve448/arch_64/f_impl64.c +++ b/crypto/ec/curve448/arch_64/f_impl64.c @@ -10,6 +10,7 @@ * Originally written by Mike Hamburg */ +#include "e_os.h" #include "openssl/macros.h" #include "internal/numbers.h" -- 2.47.2