From babd71c73c6e6868027d222a81ef499058f11794 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Mon, 9 Jun 2025 00:08:16 -0400 Subject: usr: libc: Include stdbool.h in itoa.c Signed-off-by: Ian Moffett --- lib/libc/src/string/itoa.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/libc/src') diff --git a/lib/libc/src/string/itoa.c b/lib/libc/src/string/itoa.c index 6387b3e..cfce406 100644 --- a/lib/libc/src/string/itoa.c +++ b/lib/libc/src/string/itoa.c @@ -29,6 +29,7 @@ #include #include +#include static char * itoa_base10_convert(int64_t value, char *buf) -- cgit v1.2.3