From c60ee5b957ef3cc605854ab7ebbf4ca2dac85e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20J=C3=A4ger?= <17674105+martinjaeger@users.noreply.github.com> Date: Tue, 14 Apr 2026 00:47:24 +0200 Subject: [PATCH] platform: zephyr: add fs.h include (#4906) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Required for definition of struct fs_file_t and struct fs_dir_t. Signed-off-by: Martin Jäger --- core/shared/platform/zephyr/platform_internal.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/shared/platform/zephyr/platform_internal.h b/core/shared/platform/zephyr/platform_internal.h index 08c0b4777..b3f121874 100644 --- a/core/shared/platform/zephyr/platform_internal.h +++ b/core/shared/platform/zephyr/platform_internal.h @@ -59,6 +59,7 @@ #include #include #include +#include #else /* else of KERNEL_VERSION_NUMBER < 0x030200 */ #include #include @@ -67,6 +68,7 @@ #include #include #include +#include #endif /* end of KERNEL_VERSION_NUMBER < 0x030200 */ #ifdef CONFIG_USERSPACE