From: John Kohl Date: Wed, 26 Jul 2023 12:41:31 +0000 (-0400) Subject: fix compile error (SIZE_MAX not found) on HP-UX X-Git-Tag: openssl-3.2.0-alpha1~356 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f14656e1cc002a09b2d6148302a1fc71a30f7cd;p=thirdparty%2Fopenssl.git fix compile error (SIZE_MAX not found) on HP-UX Fixes #21554 CLA: trivial Reviewed-by: Hugo Landau Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/21562) --- diff --git a/ssl/priority_queue.c b/ssl/priority_queue.c index 3caf7e24f9c..c34f21830b8 100644 --- a/ssl/priority_queue.c +++ b/ssl/priority_queue.c @@ -12,6 +12,7 @@ #include #include "internal/priority_queue.h" #include "internal/safe_math.h" +#include "internal/numbers.h" OSSL_SAFE_MATH_UNSIGNED(size_t, size_t)