From fb8649ec423277d50936a6a7848a1b6705e208cc Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Mon, 7 Apr 2025 13:29:36 +0200 Subject: [PATCH 55/58] hashfunc: add stddef.h include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit size_t is declared in stddef.h, so include the header file to make sure it is available. Fixes build on UEFI. Signed-off-by: Gerd Hoffmann Reviewed-by: Saša Nedvědický Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/27284) --- include/internal/hashfunc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/internal/hashfunc.h b/include/internal/hashfunc.h index cabc7beed4..fae8a275fa 100644 --- a/include/internal/hashfunc.h +++ b/include/internal/hashfunc.h @@ -11,6 +11,7 @@ # define OPENSSL_HASHFUNC_H # include +# include /** * Generalized fnv1a 64 bit hash function */ -- 2.49.0