From 843a652d991a043ee176892ebbad2883c17db593 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20J=C3=A4ger?= Date: Mon, 6 Apr 2026 22:54:09 +0200 Subject: [PATCH] platform: zephyr: add fs.h include 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 08c0b4777b..b3f1218742 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