From cdb6c2d66eafe066c1070b6f13a94aeed873f7f3 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Thu, 3 Oct 2024 17:02:45 +0100 Subject: [PATCH] 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 --- shared/strbuf.h | 1 + 1 file changed, 1 insertion(+) 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 -- 2.47.3