Changeset 1b20da0 in mainline for uspace/lib/c/generic/io/io.c
- Timestamp:
- 2018-02-28T17:52:03Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3061bc1
- Parents:
- df6ded8
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/io.c
rdf6ded8 r1b20da0 54 54 static FILE stdin_null = { 55 55 .fd = -1, 56 .pos = 0, 56 .pos = 0, 57 57 .error = true, 58 58 .eof = true, … … 69 69 static FILE stdout_kio = { 70 70 .fd = -1, 71 .pos = 0, 71 .pos = 0, 72 72 .error = false, 73 73 .eof = false, … … 84 84 static FILE stderr_kio = { 85 85 .fd = -1, 86 .pos = 0, 86 .pos = 0, 87 87 .error = false, 88 88 .eof = false, … … 827 827 errno = rc; 828 828 stream->error = true; 829 return -1; 829 return -1; 830 830 } 831 831 stream->pos = st.size + offset;
Note:
See TracChangeset
for help on using the changeset viewer.