From fc00c656c96528112d05cf0edf8631bd5eaea446 Mon Sep 17 00:00:00 2001 From: Kacper Date: Sun, 7 Dec 2025 20:10:31 +0100 Subject: Add build system scaffolding and libc headers --- include/stdbool.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 include/stdbool.h (limited to 'include/stdbool.h') diff --git a/include/stdbool.h b/include/stdbool.h new file mode 100644 index 00000000..4b677e27 --- /dev/null +++ b/include/stdbool.h @@ -0,0 +1,9 @@ +#ifndef __STDBOOL_H__ +#define __STDBOOL_H__ + +#define bool _Bool +#define true 1 +#define false 0 +#define __bool_true_false_are_defined 1 + +#endif -- cgit v1.2.3