From b46cbe7e79dffef5373a43d3f532e72a39038f53 Mon Sep 17 00:00:00 2001 From: Shell Date: Wed, 25 Sep 2024 11:12:30 +0800 Subject: [PATCH] feat: includes: included kerrno.h in rtdef.h Those definitions are presented in rtdef.h until PR #9461 moved them to kerrno.h, which introduced unknown definition error for project building Changes: - Added includes of kerrno.h Signed-off-by: Shell --- include/rtdef.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/rtdef.h b/include/rtdef.h index 63038be5356..34bb283ae71 100644 --- a/include/rtdef.h +++ b/include/rtdef.h @@ -68,6 +68,8 @@ #include "rtsched.h" #include "rttypes.h" +#include "klibc/kerrno.h" + #ifdef __cplusplus extern "C" { #endif