Changeset 777832e in mainline for uspace/lib/posix/include
- Timestamp:
- 2018-06-21T12:27:09Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 296890f3
- Parents:
- 7d7bc09
- git-author:
- Jiri Svoboda <jiri@…> (2018-06-20 19:26:46)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-06-21 12:27:09)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/stdio.h
r7d7bc09 r777832e 59 59 FILE *__restrict__ stream); 60 60 61 /* Error Messages */62 extern void perror(const char *s);63 64 /* File Positioning */65 typedef struct {66 off64_t offset;67 } fpos_t;68 69 extern int fsetpos(FILE *stream, const fpos_t *pos);70 extern int fgetpos(FILE *__restrict__ stream, fpos_t *__restrict__ pos);71 61 extern int fseeko(FILE *stream, off_t offset, int whence); 72 62 extern off_t ftello(FILE *stream);
Note:
See TracChangeset
for help on using the changeset viewer.