aboutsummaryrefslogtreecommitdiff
path: root/stdbool.h
diff options
context:
space:
mode:
authorbellard <bellard>2001-12-17 21:57:01 +0000
committerbellard <bellard>2001-12-17 21:57:01 +0000
commitb0b2d5d2e9548c83aab494831def6e028eecc9e4 (patch)
tree240032ccfe3f2d94f6e47eaf647640313525d9ed /stdbool.h
parent2694c105472235bc65438fcea1de2a9e2143fe79 (diff)
downloadtinycc-b0b2d5d2e9548c83aab494831def6e028eecc9e4.tar.gz
tinycc-b0b2d5d2e9548c83aab494831def6e028eecc9e4.tar.bz2
update
Diffstat (limited to 'stdbool.h')
-rw-r--r--stdbool.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/stdbool.h b/stdbool.h
new file mode 100644
index 0000000..6ed13a6
--- /dev/null
+++ b/stdbool.h
@@ -0,0 +1,10 @@
+#ifndef _STDBOOL_H
+#define _STDBOOL_H
+
+/* ISOC99 boolean */
+
+#define bool _Bool
+#define true 1
+#define false 0
+
+#endif /* _STDBOOL_H */