From 4abab5ad6c8465a7528ccdd5f49367da05f78bbd Mon Sep 17 00:00:00 2001 From: Vladimir Azarov Date: Tue, 1 Oct 2024 15:47:05 +0200 Subject: Initial version --- include/stdbool.h | 14 ++++++++++++++ 1 file changed, 14 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 0000000..a9d7ab7 --- /dev/null +++ b/include/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