Index: libcfa/src/fstream.cfa
===================================================================
--- libcfa/src/fstream.cfa	(revision dee1f892debc88dfe69449a54ea03dbb87f3f3d0)
+++ libcfa/src/fstream.cfa	(revision fd8f88fdb617bbb82f852238caec3b0b1732bc67)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Jul 15 18:11:26 2019
-// Update Count     : 349
+// Last Modified On : Tue Sep 10 22:19:56 2019
+// Update Count     : 354
 //
 
@@ -164,12 +164,12 @@
 } // fmt
 
-static ofstream soutFile = { (FILE *)(&_IO_2_1_stdout_) };
+static ofstream soutFile = { (FILE *)stdout };
 ofstream & sout = soutFile, & stdout = soutFile;
-static ofstream serrFile = { (FILE *)(&_IO_2_1_stderr_) };
+static ofstream serrFile = { (FILE *)stderr };
 ofstream & serr = serrFile, & stderr = serrFile;
 
-static ofstream exitFile = { (FILE *)(&_IO_2_1_stdout_) };
+static ofstream exitFile = { (FILE *)stdout };
 ofstream & exit = exitFile;
-static ofstream abortFile = { (FILE *)(&_IO_2_1_stderr_) };
+static ofstream abortFile = { (FILE *)stderr };
 ofstream & abort = abortFile;
 
@@ -265,6 +265,5 @@
 } // fmt
 
-
-static ifstream sinFile = { (FILE *)(&_IO_2_1_stdin_) };
+static ifstream sinFile = { (FILE *)stdin };
 ifstream & sin = sinFile, & stdin = sinFile;
 
