Changeset b08ef1fd in mainline for uspace/lib/posix/stdio.h
- Timestamp:
- 2011-06-16T02:57:47Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 491e1ee
- Parents:
- 4f4b4e7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.h
r4f4b4e7 rb08ef1fd 38 38 39 39 #include "libc/stdio.h" 40 #include "sys/types.h" 40 41 41 42 /* Character Input/Output */ … … 52 53 extern void posix_perror(const char *s); 53 54 55 /* File Positioning */ 56 extern int posix_fseeko(FILE *stream, posix_off_t offset, int whence); 57 extern posix_off_t posix_ftello(FILE *stream); 58 54 59 #ifndef POSIX_INTERNAL 55 60 #define freopen posix_freopen 56 61 57 62 #define perror posix_perror 63 64 #define fseeko posix_fseeko 65 #define ftello posix_ftello 58 66 #endif 59 67
Note:
See TracChangeset
for help on using the changeset viewer.