ref: 41850b088910e270b84f3a68b16c305556fa61a1
parent: 3cce2df50df508019c1e511625f13832965ef28a
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Fri Feb 17 06:12:42 EST 2017
[libc] Add stdbool.h
--- /dev/null
+++ b/libc/include/stdbool.h
@@ -1,0 +1,10 @@
+/* See LICENSE file for copyright and license details. */
+#ifndef _STDBOOL_H
+#define _STDBOOL_H
+
+#define bool _Bool
+#define true ((bool) 1)
+#define false ((bool) 0)
+#define __bool_true_false_are_defined 1
+
+#endif