From ac5a61caf87652733545e9c2a9219e5986b6a35a Mon Sep 17 00:00:00 2001 From: Shane Lontis Date: Fri, 9 Aug 2019 21:38:42 +1000 Subject: [PATCH] Add missing SIZE_MAX define for windows Reviewed-by: Richard Levitte Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/9559) --- crypto/evp/exchange.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/evp/exchange.c b/crypto/evp/exchange.c index 1c48e7f0ba..20503b5f67 100644 --- a/crypto/evp/exchange.c +++ b/crypto/evp/exchange.c @@ -13,6 +13,7 @@ #include "internal/refcount.h" #include "internal/evp_int.h" #include "internal/provider.h" +#include "internal/numbers.h" /* includes SIZE_MAX */ #include "evp_locl.h" static EVP_KEYEXCH *evp_keyexch_new(OSSL_PROVIDER *prov) -- 2.34.1