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 <aleksander.wasaznik@nordicsemi.no>
This commit is contained in:
Aleksander Wasaznik 2023-03-17 10:01:19 +01:00 committed by Carles Cufí
parent 63652b38a1
commit cc1c3ac58e

View file

@ -7,6 +7,7 @@
#ifndef SHELL_STRING_CONV_H__
#define SHELL_STRING_CONV_H__
#include <stdbool.h>
#include <stdint.h>
#ifdef __cplusplus