Changes in uspace/lib/posix/stdio.h [823a929:59f799b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.h
r823a929 r59f799b 39 39 #include "libc/stdio.h" 40 40 #include "sys/types.h" 41 #include "libc/stdarg.h"42 41 43 42 /* Character Input/Output */ … … 61 60 /* Formatted Input/Output */ 62 61 extern int posix_sprintf(char *restrict s, const char *restrict format, ...); 63 extern int posix_vsprintf(char *restrict s, const char *restrict format, va_list ap);64 62 extern int posix_sscanf(const char *restrict s, const char *restrict format, ...); 65 66 /* Deleting Files */67 extern int posix_remove(const char *path);68 69 /* Temporary Files */70 extern char *posix_tmpnam(char *s);71 63 72 64 #ifndef LIBPOSIX_INTERNAL … … 81 73 82 74 #define sprintf posix_sprintf 83 #define vsprintf posix_vsprintf84 75 #define sscanf posix_sscanf 85 86 #define remove posix_remove87 88 #define tmpnam posix_tmpnam89 76 #endif 90 77
Note:
See TracChangeset
for help on using the changeset viewer.