Changeset 90a8125 for libcfa/src/fstream.cfa
- Timestamp:
- Jun 3, 2022, 3:10:01 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 7affcda
- Parents:
- bf0263c (diff), fc134a48 (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
rbf0263c r90a8125 22 22 #include <assert.h> 23 23 #include <errno.h> // errno 24 25 #pragma GCC visibility push(default) 24 26 25 27 // *********************************** ofstream *********************************** … … 118 120 // abort | IO_MSG "open output file \"" | name | "\"" | nl | strerror( errno ); 119 121 } // if 120 (os){ file }; // initialize 122 (os){ file }; // initialize 121 123 } // open 122 124 … … 157 159 va_list args; 158 160 va_start( args, format ); 159 161 160 162 int len; 161 163 for ( cnt; 10 ) { … … 241 243 // abort | IO_MSG "open input file \"" | name | "\"" | nl | strerror( errno ); 242 244 } // if 243 (is){ file }; // initialize 245 (is){ file }; // initialize 244 246 } // open 245 247
Note:
See TracChangeset
for help on using the changeset viewer.