From da6742b7764c767b7aec15c3ad4840b734e5166a Mon Sep 17 00:00:00 2001 From: Alberto Escolar Piedras Date: Tue, 27 May 2025 20:26:04 +0200 Subject: [PATCH] subsys/fs/fuse: Fix adding missing stddef header Instead of relaying on stddef.h being included by other headers let's include it explicitly, following a report of it being missing for Ubuntu 22.04 (glibc 2.35) Signed-off-by: Alberto Escolar Piedras --- subsys/fs/fuse_fs_access_bottom.c | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/fs/fuse_fs_access_bottom.c b/subsys/fs/fuse_fs_access_bottom.c index e3d3cd8b96e..1bde305d4f0 100644 --- a/subsys/fs/fuse_fs_access_bottom.c +++ b/subsys/fs/fuse_fs_access_bottom.c @@ -10,6 +10,7 @@ #undef _XOPEN_SOURCE #define _XOPEN_SOURCE 700 +#include #include #include #include