Changes in libcfa/src/fstream.cfa [cce4648:7a1b7e6]
- File:
-
- 1 edited
-
libcfa/src/fstream.cfa (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/fstream.cfa
rcce4648 r7a1b7e6 22 22 #include <assert.h> 23 23 #include <errno.h> // errno 24 25 #pragma GCC visibility push(default)26 24 27 25 // *********************************** ofstream *********************************** … … 120 118 // abort | IO_MSG "open output file \"" | name | "\"" | nl | strerror( errno ); 121 119 } // if 122 (os){ file }; // initialize 120 (os){ file }; // initialize 123 121 } // open 124 122 … … 159 157 va_list args; 160 158 va_start( args, format ); 161 159 162 160 int len; 163 161 for ( cnt; 10 ) { … … 243 241 // abort | IO_MSG "open input file \"" | name | "\"" | nl | strerror( errno ); 244 242 } // if 245 (is){ file }; // initialize 243 (is){ file }; // initialize 246 244 } // open 247 245
Note:
See TracChangeset
for help on using the changeset viewer.