From b03f77ba5b3a03cb515675f39e361f7e061b0f29 Mon Sep 17 00:00:00 2001 From: Yun-Hao Chung Date: Wed, 11 Aug 2021 15:08:55 +0800 Subject: [PATCH] shared/shell: fix missing stdbool in shell.h bt_shell_menu_exists_t returns bool, but stdbool.h is not included. Reviewed-by: Miao-chen Chou --- src/shared/shell.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/shell.h b/src/shared/shell.h index 415194a40..cc4f822fb 100644 --- a/src/shared/shell.h +++ b/src/shared/shell.h @@ -8,6 +8,7 @@ * */ #include +#include #define COLOR_OFF "\001\x1B[0m\002" #define COLOR_RED "\001\x1B[0;91m\002" -- 2.47.3