Index: libcfa/src/stdhdr/stdbool.h
===================================================================
--- libcfa/src/stdhdr/stdbool.h	(revision 0e0f128c9f975b8eb3f6b0870c12c639668ef24c)
+++ libcfa/src/stdhdr/stdbool.h	(revision eb46fdff930448aa318502e397b5bf1e395225d7)
@@ -10,10 +10,21 @@
 // Created On       : Mon Jul  4 23:25:26 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Jul  5 20:39:51 2016
-// Update Count     : 12
+// Last Modified On : Mon Mar 25 08:00:08 2019
+// Update Count     : 15
 // 
 
 extern "C" {
 #include_next <stdbool.h>								// has internal check for multiple expansion
+
+// allows printing as true/false
+#if defined( true )
+#undef true
+#define true ((_Bool)1)
+#endif // true
+
+#if defined( false )
+#undef false
+#define false ((_Bool)0)
+#endif // false
 } // extern "C"
 
