From cc1c3ac58eb72c84e8500e09fc694cb4155d760f Mon Sep 17 00:00:00 2001 From: Aleksander Wasaznik Date: Fri, 17 Mar 2023 10:01:19 +0100 Subject: [PATCH] Shell: Add missing include `include/zephyr/shell/shell_string_conv.h` uses `bool` from `stdbool.h`, but the include was missing. Signed-off-by: Aleksander Wasaznik --- include/zephyr/shell/shell_string_conv.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/zephyr/shell/shell_string_conv.h b/include/zephyr/shell/shell_string_conv.h index 4ecb992125..a38a5cc2ef 100644 --- a/include/zephyr/shell/shell_string_conv.h +++ b/include/zephyr/shell/shell_string_conv.h @@ -7,6 +7,7 @@ #ifndef SHELL_STRING_CONV_H__ #define SHELL_STRING_CONV_H__ +#include #include #ifdef __cplusplus