From ee7cd3e6b622a8c40236ac26270e369bc28af007 Mon Sep 17 00:00:00 2001 From: pk33 Date: Sun, 3 Nov 2024 01:39:28 +0100 Subject: modesetting tweaks --- musl/stdbool.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 musl/stdbool.h (limited to 'musl/stdbool.h') diff --git a/musl/stdbool.h b/musl/stdbool.h new file mode 100644 index 0000000..a9d7ab7 --- /dev/null +++ b/musl/stdbool.h @@ -0,0 +1,14 @@ +#ifndef _STDBOOL_H +#define _STDBOOL_H + +#ifndef __cplusplus + +#define true 1 +#define false 0 +#define bool _Bool + +#endif + +#define __bool_true_false_are_defined 1 + +#endif -- cgit v1.2.3