shared/shell: fix missing stdbool in shell.h
authorYun-Hao Chung <howardchung@chromium.org>
Wed, 11 Aug 2021 07:08:55 +0000 (15:08 +0800)
committerAyush Garg <ayush.garg@samsung.com>
Fri, 11 Mar 2022 13:38:36 +0000 (19:08 +0530)
bt_shell_menu_exists_t returns bool, but stdbool.h is not included.

Reviewed-by: Miao-chen Chou <mcchou@chromium.org>
Signed-off-by: Anuj Jain <anuj01.jain@samsung.com>
Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
src/shared/shell.h

index 415194a..cc4f822 100644 (file)
@@ -8,6 +8,7 @@
  *
  */
 #include <getopt.h>
+#include <stdbool.h>
 
 #define COLOR_OFF      "\001\x1B[0m\002"
 #define COLOR_RED      "\001\x1B[0;91m\002"