summaryrefslogtreecommitdiff
path: root/include/stdbool.h
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-07 20:10:31 +0100
committerKacper <kacper@mail.openlinux.dev>2025-12-07 20:10:31 +0100
commitfc00c656c96528112d05cf0edf8631bd5eaea446 (patch)
treea6e0e6c588191a8bd1c64afc3b7a258e3e66c236 /include/stdbool.h
Add build system scaffolding and libc headers
Diffstat (limited to 'include/stdbool.h')
-rw-r--r--include/stdbool.h9
1 files changed, 9 insertions, 0 deletions
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