Changes in libcfa/src/fstream.cfa [fd8f88f:a87d40b]
- File:
-
- 1 edited
-
libcfa/src/fstream.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.cfa
rfd8f88f ra87d40b 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Sep 10 22:19:56 201913 // Update Count : 3 5412 // Last Modified On : Mon Jul 15 18:11:26 2019 13 // Update Count : 349 14 14 // 15 15 … … 164 164 } // fmt 165 165 166 static ofstream soutFile = { (FILE *) stdout};166 static ofstream soutFile = { (FILE *)(&_IO_2_1_stdout_) }; 167 167 ofstream & sout = soutFile, & stdout = soutFile; 168 static ofstream serrFile = { (FILE *) stderr};168 static ofstream serrFile = { (FILE *)(&_IO_2_1_stderr_) }; 169 169 ofstream & serr = serrFile, & stderr = serrFile; 170 170 171 static ofstream exitFile = { (FILE *) stdout};171 static ofstream exitFile = { (FILE *)(&_IO_2_1_stdout_) }; 172 172 ofstream & exit = exitFile; 173 static ofstream abortFile = { (FILE *) stderr};173 static ofstream abortFile = { (FILE *)(&_IO_2_1_stderr_) }; 174 174 ofstream & abort = abortFile; 175 175 … … 265 265 } // fmt 266 266 267 static ifstream sinFile = { (FILE *)stdin }; 267 268 static ifstream sinFile = { (FILE *)(&_IO_2_1_stdin_) }; 268 269 ifstream & sin = sinFile, & stdin = sinFile; 269 270
Note:
See TracChangeset
for help on using the changeset viewer.