Changeset 59f799b in mainline for uspace/lib/posix/stdio.h
- Timestamp:
- 2011-06-16T19:42:22Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 39a7bfa
- Parents:
- 491e1ee
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.h
r491e1ee r59f799b 43 43 #define putc fputc 44 44 #define getc fgetc 45 extern int posix_ungetc(int c, FILE *stream); 45 46 46 47 /* Opening Streams */ … … 57 58 extern posix_off_t posix_ftello(FILE *stream); 58 59 60 /* Formatted Input/Output */ 61 extern int posix_sprintf(char *restrict s, const char *restrict format, ...); 62 extern int posix_sscanf(const char *restrict s, const char *restrict format, ...); 63 59 64 #ifndef LIBPOSIX_INTERNAL 65 #define ungetc posix_ungetc 66 60 67 #define freopen posix_freopen 61 68 … … 64 71 #define fseeko posix_fseeko 65 72 #define ftello posix_ftello 73 74 #define sprintf posix_sprintf 75 #define sscanf posix_sscanf 66 76 #endif 67 77
Note:
See TracChangeset
for help on using the changeset viewer.