From 7f14656e1cc002a09b2d6148302a1fc71a30f7cd Mon Sep 17 00:00:00 2001 From: John Kohl Date: Wed, 26 Jul 2023 08:41:31 -0400 Subject: [PATCH] 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) --- ssl/priority_queue.c | 1 + 1 file changed, 1 insertion(+) 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) -- 2.47.2