Changeset c4b072c
- Timestamp:
- May 5, 2019, 2:59:59 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- eb28d7e
- Parents:
- 62ce290
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.hfa
r62ce290 rc4b072c 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Apr 20 12:04:07201913 // Update Count : 2 2612 // Last Modified On : Fri May 3 22:55:04 2019 13 // Update Count : 230 14 14 // 15 15 … … 48 48 void close( ostype & os ); 49 49 ostype & write( ostype &, const char *, size_t ); 50 int fmt( ostype &, const char format[], ... ) ;50 int fmt( ostype &, const char format[], ... ) __attribute__(( format(printf, 2, 3) )); 51 51 }; // ostream 52 52 … … 158 158 istype & read( istype &, char *, size_t ); 159 159 istype & ungetc( istype &, char ); 160 int fmt( istype &, const char format[], ... ) ;160 int fmt( istype &, const char format[], ... ) __attribute__(( format(scanf, 2, 3) )); 161 161 }; // istream 162 162
Note: See TracChangeset
for help on using the changeset viewer.