aboutsummaryrefslogtreecommitdiff
path: root/gcc/ginclude/stdbool.h
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>1998-05-30 17:24:33 -0600
committerJeff Law <law@gcc.gnu.org>1998-05-30 17:24:33 -0600
commite2b629d7783de8c7b8ed109018d27392920c63d5 (patch)
tree330ec1d47f08242dd8412ab5857dc0bd74606493 /gcc/ginclude/stdbool.h
parent6391b50a282b9c249f3102d7e70d5845da30ca2c (diff)
downloadgcc-e2b629d7783de8c7b8ed109018d27392920c63d5.zip
gcc-e2b629d7783de8c7b8ed109018d27392920c63d5.tar.gz
gcc-e2b629d7783de8c7b8ed109018d27392920c63d5.tar.bz2
Makefile.in (USER_H): Add stdbool.h.
* Makefile.in (USER_H): Add stdbool.h. * ginclude/stdbool.h: New file. From-SVN: r20145
Diffstat (limited to 'gcc/ginclude/stdbool.h')
-rw-r--r--gcc/ginclude/stdbool.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/gcc/ginclude/stdbool.h b/gcc/ginclude/stdbool.h
new file mode 100644
index 0000000..0baf9ce
--- /dev/null
+++ b/gcc/ginclude/stdbool.h
@@ -0,0 +1,20 @@
+/* stdbool.h for GNU. */
+#ifndef __STDBOOL_H__
+#define __STDBOOL_H__ 1
+
+/* The type `bool' must promote to `int' or `unsigned int'. The constants
+ `true' and `false' must have the value 0 and 1 respectively. */
+typedef enum
+ {
+ false = 0,
+ true = 1
+ } bool;
+
+/* The names `true' and `false' must also be made available as macros. */
+#define false false
+#define true true
+
+/* Signal that all the definitions are present. */
+#define __bool_true_false_are_defined 1
+
+#endif /* stdbool.h */