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>
This commit is contained in:
parent
087267a0ff
commit
da6742b776
1 changed files with 1 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
||||||
#undef _XOPEN_SOURCE
|
#undef _XOPEN_SOURCE
|
||||||
#define _XOPEN_SOURCE 700
|
#define _XOPEN_SOURCE 700
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue