Changeset e3c960e in mainline
- Timestamp:
- 2014-03-15T19:34:00Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dc5a1f26
- Parents:
- c773adc
- Location:
- uspace/lib/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/stdio.h
rc773adc re3c960e 155 155 156 156 /* File Positioning */ 157 typedef struct _posix_fpos __POSIX_DEF__(fpos_t); 157 typedef struct { 158 off64_t offset; 159 } __POSIX_DEF__(fpos_t); 160 158 161 extern int __POSIX_DEF__(fsetpos)(FILE *stream, const __POSIX_DEF__(fpos_t) *pos); 159 162 extern int __POSIX_DEF__(fgetpos)(FILE *restrict stream, __POSIX_DEF__(fpos_t) *restrict pos); -
uspace/lib/posix/source/stdio.c
rc773adc re3c960e 309 309 } 310 310 311 struct _posix_fpos {312 off64_t offset;313 };314 315 311 /** Restores stream a to position previously saved with fgetpos(). 316 312 *
Note:
See TracChangeset
for help on using the changeset viewer.