Changeset 59f388a in mainline for uspace/lib/c/generic/io/io.c
- Timestamp:
- 2017-04-04T20:56:47Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- 51774cd
- Parents:
- 8fe46a0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/io.c
r8fe46a0 r59f388a 834 834 off64_t ftell(FILE *stream) 835 835 { 836 /* The native position is too large for the C99-ish interface. */ 837 if (stream->pos - stream->ungetc_chars > INT64_MAX) 838 return EOF; 839 836 840 if (stream->error) 837 841 return EOF;
Note:
See TracChangeset
for help on using the changeset viewer.