summaryrefslogtreecommitdiff
path: root/utils/bool.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/bool.h')
-rw-r--r--utils/bool.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/utils/bool.h b/utils/bool.h
new file mode 100644
index 0000000..ec3b36d
--- /dev/null
+++ b/utils/bool.h
@@ -0,0 +1,27 @@
+/*
+ * CENA C++ Utilities
+ *
+ * Copyright 1990, 1991, 1992
+ * Laboratoire de Recherche en Informatique (LRI)
+ * Centre d'Etudes de la Navigation Aerienne (CENA)
+ *
+ * booleans
+ *
+ * $Id$
+ * $CurLog$
+ */
+
+#ifndef _bool_h
+#define _bool_h 1
+
+#if defined(TRUE)
+#undef TRUE
+#undef FALSE
+#endif
+
+enum bool {
+ TRUE = 1,
+ FALSE = 0
+};
+
+#endif /* _bool_h */