Changeset 221afc9e in mainline for uspace/lib/posix/stdio.h
- Timestamp:
- 2011-07-12T02:43:56Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2346e78
- Parents:
- 46ac986
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.h
r46ac986 r221afc9e 53 53 #undef putc 54 54 #define putc fputc 55 extern int posix_fputs(const char *restrict s, FILE *restrict stream); 55 56 #undef getc 56 57 #define getc fgetc … … 79 80 extern long posix_ftell(FILE *stream); 80 81 extern posix_off_t posix_ftello(FILE *stream); 82 83 /* Flushing Buffers */ 84 extern int posix_fflush(FILE *stream); 81 85 82 86 /* Formatted Output */ … … 122 126 #define clearerr posix_clearerr 123 127 128 #define fputs posix_fputs 124 129 #define ungetc posix_ungetc 125 130 #define getdelim posix_getdelim … … 139 144 #define ftell posix_ftell 140 145 #define ftello posix_ftello 146 147 #define fflush posix_fflush 141 148 142 149 #define dprintf posix_dprintf
Note:
See TracChangeset
for help on using the changeset viewer.