Skip to content

Commit da6742b

Browse files
aescolarkartben
authored andcommitted
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 <alberto.escolar.piedras@nordicsemi.no>
1 parent 087267a commit da6742b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

subsys/fs/fuse_fs_access_bottom.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#undef _XOPEN_SOURCE
1111
#define _XOPEN_SOURCE 700
1212

13+
#include <stddef.h>
1314
#include <stdbool.h>
1415
#include <stdio.h>
1516
#include <stdlib.h>

0 commit comments

Comments
 (0)