Index: libcfa/src/iostream.cfa
===================================================================
--- libcfa/src/iostream.cfa	(revision 58b6d1b3b8da710a22441043f60cb988a2c2e56d)
+++ libcfa/src/iostream.cfa	(revision cdbab558c7734aaa7ebe27165f8fc27f3514ad1a)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Jun  2 08:24:56 2018
-// Update Count     : 471
+// Last Modified On : Sat Aug 11 13:56:43 2018
+// Update Count     : 473
 //
 
@@ -27,5 +27,5 @@
 
 forall( dtype ostype | ostream( ostype ) ) {
-	ostype & ?|?( ostype & os, _Bool b ) {
+	ostype & ?|?( ostype & os, bool b ) {
 		if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
 		fmt( os, "%s", b ? "true" : "false" );
@@ -275,5 +275,5 @@
 
 forall( dtype istype | istream( istype ) ) {
-	istype & ?|?( istype & is, _Bool & b ) {
+	istype & ?|?( istype & is, bool & b ) {
 		char val[6];
 		fmt( is, "%5s", val );
@@ -281,5 +281,5 @@
 		else if ( strcmp( val, "false" ) == 0 ) b = false;
 		else {
-			fprintf( stderr, "invalid _Bool constant\n" );
+			fprintf( stderr, "invalid Boolean constant\n" );
 			abort();
 		} // if
