From: Emil Velikov Date: Thu, 3 Oct 2024 16:02:45 +0000 (+0100) Subject: shared: add missing stddef.h include X-Git-Tag: v34~261 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cdb6c2d66eafe066c1070b6f13a94aeed873f7f3;p=thirdparty%2Fkmod.git shared: add missing stddef.h include Required for size_t, reported by clang-tidy. Fixes: 38943b20 ("shared: use size_t for strbuf") Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/172 Signed-off-by: Lucas De Marchi --- diff --git a/shared/strbuf.h b/shared/strbuf.h index 946896fb..8824afdc 100644 --- a/shared/strbuf.h +++ b/shared/strbuf.h @@ -1,6 +1,7 @@ #pragma once #include +#include /* * Buffer abstract data type