From 65ac7698ba8b7010c6127740f18a4c9c12d562c7 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Mon, 7 Apr 2025 13:29:36 +0200 Subject: [PATCH] hashfunc: add stddef.h include MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 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) (cherry picked from commit 44e9c5a3edd199ed7d7fe427fe0e1ef76dc52663) --- include/internal/hashfunc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/internal/hashfunc.h b/include/internal/hashfunc.h index cabc7beed4a..fae8a275fa2 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.47.2