From: Gerd Hoffmann Date: Mon, 7 Apr 2025 11:29:36 +0000 (+0200) Subject: hashfunc: add stddef.h include X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44e9c5a3edd199ed7d7fe427fe0e1ef76dc52663;p=thirdparty%2Fopenssl.git hashfunc: add stddef.h include 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) --- 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 */