Changeset 777832e in mainline for uspace/lib/posix/include


Ignore:
Timestamp:
2018-06-21T12:27:09Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
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)
Message:

fgetpos, fsetpos, perror.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/include/posix/stdio.h

    r7d7bc09 r777832e  
    5959    FILE *__restrict__ stream);
    6060
    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);
    7161extern int fseeko(FILE *stream, off_t offset, int whence);
    7262extern off_t ftello(FILE *stream);
Note: See TracChangeset for help on using the changeset viewer.