Changes in uspace/lib/posix/stdio.h [75406dc:4c8f5e7] in mainline
- File:
-
- 1 edited
-
uspace/lib/posix/stdio.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.h
r75406dc r4c8f5e7 65 65 extern FILE *posix_freopen(const char *restrict filename, 66 66 const char *restrict mode, FILE *restrict stream); 67 extern FILE *posix_fmemopen(void *restrict buf, size_t size,68 const char *restrict mode);69 extern FILE *posix_open_memstream(char **bufp, size_t *sizep);70 67 71 68 /* Error Messages */ … … 123 120 #define L_tmpnam PATH_MAX 124 121 extern char *posix_tmpnam(char *s); 122 extern char *posix_tempnam(const char *dir, const char *pfx); 123 extern FILE *posix_tmpfile(void); 125 124 126 125 #ifndef LIBPOSIX_INTERNAL 126 /* DEBUG macro does not belong to POSIX stdio.h. Its unconditional 127 * definition in the native stdio.h causes unexpected behaviour of 128 * applications which uses their own DEBUG macro (e.g. debugging 129 * output is printed even if not desirable). */ 130 #undef DEBUG 131 127 132 #define ctermid posix_ctermid 128 133 … … 176 181 177 182 #define tmpnam posix_tmpnam 183 #define tempnam posix_tempnam 184 #define tmpfile posix_tmpfile 178 185 #endif 179 186
Note:
See TracChangeset
for help on using the changeset viewer.
