diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-09 00:08:16 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-09 00:08:16 -0400 |
commit | babd71c73c6e6868027d222a81ef499058f11794 (patch) | |
tree | 95be2110165635ed775dae52b4c014d4a7e8bf38 | |
parent | bb11f1ead4fe637678dab06bdc57dff1778dcaf2 (diff) |
usr: libc: Include stdbool.h in itoa.c
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | lib/libc/src/string/itoa.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 <sys/types.h> #include <string.h> +#include <stdbool.h> static char * itoa_base10_convert(int64_t value, char *buf) |