From 897e233ca508ce9ce493328e9d127db6ea274bc3 Mon Sep 17 00:00:00 2001 From: TOKITA Hiroshi Date: Thu, 2 Oct 2025 12:23:48 +0900 Subject: [PATCH] zephyr: including fs_interface.h `fs_file_t` and `fs_dir_t` is defined in fs_interface.h. However, platform_internal.h does not currently include it, so the symbols can't be resolved. We include it to resolve these definitions with platform_internal.h standalone. Signed-off-by: TOKITA Hiroshi --- 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 d5f0c80d81..b090edf3dc 100644 --- a/core/shared/platform/zephyr/platform_internal.h +++ b/core/shared/platform/zephyr/platform_internal.h @@ -38,6 +38,7 @@ #if KERNEL_VERSION_NUMBER < 0x030200 /* version 3.2.0 */ #include +#include #include #include #include @@ -45,6 +46,7 @@ #include #else /* else of KERNEL_VERSION_NUMBER < 0x030200 */ #include +#include #include #include #include