Changes in libcfa/src/fstream.cfa [ff2a33e:a87d40b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.cfa
rff2a33e ra87d40b 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Jul 14 11:51:10201913 // Update Count : 34 712 // Last Modified On : Mon Jul 15 18:11:26 2019 13 // Update Count : 349 14 14 // 15 15 … … 165 165 166 166 static ofstream soutFile = { (FILE *)(&_IO_2_1_stdout_) }; 167 ofstream & sout = soutFile ;167 ofstream & sout = soutFile, & stdout = soutFile; 168 168 static ofstream serrFile = { (FILE *)(&_IO_2_1_stderr_) }; 169 ofstream & serr = serrFile ;169 ofstream & serr = serrFile, & stderr = serrFile; 170 170 171 171 static ofstream exitFile = { (FILE *)(&_IO_2_1_stdout_) }; … … 267 267 268 268 static ifstream sinFile = { (FILE *)(&_IO_2_1_stdin_) }; 269 ifstream & sin = sinFile ;269 ifstream & sin = sinFile, & stdin = sinFile; 270 270 271 271 // Local Variables: //
Note: See TracChangeset
for help on using the changeset viewer.