]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Makefile.in (USER_H): Add stdbool.h.
authorJeff Law <law@gcc.gnu.org>
Sat, 30 May 1998 23:24:33 +0000 (17:24 -0600)
committerJeff Law <law@gcc.gnu.org>
Sat, 30 May 1998 23:24:33 +0000 (17:24 -0600)
        * Makefile.in (USER_H): Add stdbool.h.
        * ginclude/stdbool.h: New file.

From-SVN: r20145

gcc/Makefile.in
gcc/ginclude/stdbool.h [new file with mode: 0644]

index fc367e228eb30a6bd17348aa440f3d1a2da73d8d..f7c9bb7bef3ec2528df3035a86f6fba4daac122b 100644 (file)
@@ -144,8 +144,8 @@ USER_H = $(srcdir)/ginclude/stdarg.h $(srcdir)/ginclude/stddef.h \
     $(srcdir)/ginclude/va-m32r.h $(srcdir)/ginclude/va-sh.h \
     $(srcdir)/ginclude/va-v850.h $(srcdir)/ginclude/va-arc.h \
     $(srcdir)/ginclude/iso646.h $(srcdir)/ginclude/va-ppc.h \
-    $(srcdir)/ginclude/proto.h $(EXTRA_HEADERS) \
-    $(LANG_EXTRA_HEADERS)
+    $(EXTRA_HEADERS) $(LANG_EXTRA_HEADERS) \
+    $(srcdir)/ginclude/proto.h $(srcdir)/ginclude/stdbool.h
 
 # Target to use whe installing assert.h.  Some systems may
 # want to set this empty.
diff --git a/gcc/ginclude/stdbool.h b/gcc/ginclude/stdbool.h
new file mode 100644 (file)
index 0000000..0baf9ce
--- /dev/null
@@ -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 */