Index: src/libcfa/fstream
===================================================================
--- src/libcfa/fstream	(revision 91d766d343e9b08d9a2fedca5e14273f61405a64)
+++ src/libcfa/fstream	(revision 93c2e0a33e1d94c001d5305d6c91c359ac060359)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Jun  5 10:20:25 2018
-// Update Count     : 131
+// Last Modified On : Sat Aug 11 13:54:27 2018
+// Update Count     : 132
 //
 
@@ -21,7 +21,7 @@
 struct ofstream {
 	void * file;
-	_Bool sepDefault;
-	_Bool sepOnOff;
-	_Bool sawNL;
+	bool sepDefault;
+	bool sepOnOff;
+	bool sawNL;
 	const char * sepCur;
 	char separator[sepSize];
@@ -30,17 +30,17 @@
 
 // private
-_Bool sepPrt( ofstream & );
+bool sepPrt( ofstream & );
 void sepReset( ofstream & );
-void sepReset( ofstream &, _Bool );
+void sepReset( ofstream &, bool );
 const char * sepGetCur( ofstream & );
 void sepSetCur( ofstream &, const char * );
-_Bool getNL( ofstream & );
-void setNL( ofstream &, _Bool );
+bool getNL( ofstream & );
+void setNL( ofstream &, bool );
 
 // public
 void sepOn( ofstream & );
 void sepOff( ofstream & );
-_Bool sepDisable( ofstream & );
-_Bool sepEnable( ofstream & );
+bool sepDisable( ofstream & );
+bool sepEnable( ofstream & );
 
 const char * sepGet( ofstream & );
