Changeset d2cc7e1 in mainline for uspace/lib/libc/generic/io/io.c
- Timestamp:
- 2009-03-21T11:26:31Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0a5116db
- Parents:
- 5b8c75a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/io/io.c
r5b8c75a rd2cc7e1 98 98 { 99 99 unsigned char c; 100 101 flush_stdout(); 100 102 if (read_stdin((void *) &c, 1) == 1) 101 103 return c; … … 104 106 } 105 107 108 int fflush(FILE *f) 109 { 110 (void) f; 111 return flush_stdout(); 112 } 113 106 114 /** @} 107 115 */
Note:
See TracChangeset
for help on using the changeset viewer.