Changeset 021c508 in mainline for uspace/lib/posix/stdio.h
- Timestamp:
- 2011-06-24T02:17:09Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d185132
- Parents:
- 4d4988e (diff), 67c64b9f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.h
r4d4988e r021c508 39 39 #include "libc/stdio.h" 40 40 #include "sys/types.h" 41 #include "libc/stdarg.h" 41 42 42 43 /* Character Input/Output */ … … 60 61 /* Formatted Input/Output */ 61 62 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); 62 64 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); 63 71 64 72 #ifndef LIBPOSIX_INTERNAL … … 73 81 74 82 #define sprintf posix_sprintf 83 #define vsprintf posix_vsprintf 75 84 #define sscanf posix_sscanf 85 86 #define remove posix_remove 87 88 #define tmpnam posix_tmpnam 76 89 #endif 77 90
Note:
See TracChangeset
for help on using the changeset viewer.