From 588611d314af6850bee1d45c376b15a2829b6fd8 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 63038be535..34bb283ae7 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