rcx

library of miscellaneous bits of C code
git clone git://git.rr3.xyz/rcx
Log | Files | Refs | README | LICENSE

commit 53dd7357a28620b688077cbbfa316c0fbaa6ca45
parent f9c9b2e6ba52e9455fb41da4149c6eb02f74ccd2
Author: Robert Russell <robertrussell.72001@gmail.com>
Date:   Sun, 20 Aug 2023 16:44:16 -0700

Include stdbool.h appropriately

Diffstat:
Minc/dict.h | 1+
Minc/string.h | 1+
Minc/vmem.h | 2++
3 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/inc/dict.h b/inc/dict.h @@ -1,5 +1,6 @@ #pragma once +#include <stdbool.h> #include <string.h> #include "debug.h" diff --git a/inc/string.h b/inc/string.h @@ -1,6 +1,7 @@ #pragma once #include <stdarg.h> +#include <stdbool.h> #include <string.h> #include "debug.h" diff --git a/inc/vmem.h b/inc/vmem.h @@ -1,5 +1,7 @@ #pragma once +#include <stdbool.h> + #include "def.h" usize vmem_page_size(void);