Changeset a539fc3 for libcfa/src
- Timestamp:
- Sep 11, 2019, 1:40:38 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 6716d78
- Parents:
- 8209e70 (diff), fd8f88f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.cfa
r8209e70 ra539fc3 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jul 15 18:11:26 201913 // Update Count : 3 4912 // Last Modified On : Tue Sep 10 22:19:56 2019 13 // Update Count : 354 14 14 // 15 15 … … 164 164 } // fmt 165 165 166 static ofstream soutFile = { (FILE *) (&_IO_2_1_stdout_)};166 static ofstream soutFile = { (FILE *)stdout }; 167 167 ofstream & sout = soutFile, & stdout = soutFile; 168 static ofstream serrFile = { (FILE *) (&_IO_2_1_stderr_)};168 static ofstream serrFile = { (FILE *)stderr }; 169 169 ofstream & serr = serrFile, & stderr = serrFile; 170 170 171 static ofstream exitFile = { (FILE *) (&_IO_2_1_stdout_)};171 static ofstream exitFile = { (FILE *)stdout }; 172 172 ofstream & exit = exitFile; 173 static ofstream abortFile = { (FILE *) (&_IO_2_1_stderr_)};173 static ofstream abortFile = { (FILE *)stderr }; 174 174 ofstream & abort = abortFile; 175 175 … … 265 265 } // fmt 266 266 267 268 static ifstream sinFile = { (FILE *)(&_IO_2_1_stdin_) }; 267 static ifstream sinFile = { (FILE *)stdin }; 269 268 ifstream & sin = sinFile, & stdin = sinFile; 270 269
Note: See TracChangeset
for help on using the changeset viewer.