Changes in uspace/lib/posix/stdio.h [4c8f5e7:75406dc] in mainline
- File:
-
- 1 edited
-
uspace/lib/posix/stdio.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.h
r4c8f5e7 r75406dc 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); 67 70 68 71 /* Error Messages */ … … 120 123 #define L_tmpnam PATH_MAX 121 124 extern char *posix_tmpnam(char *s); 122 extern char *posix_tempnam(const char *dir, const char *pfx);123 extern FILE *posix_tmpfile(void);124 125 125 126 #ifndef LIBPOSIX_INTERNAL 126 /* DEBUG macro does not belong to POSIX stdio.h. Its unconditional127 * definition in the native stdio.h causes unexpected behaviour of128 * applications which uses their own DEBUG macro (e.g. debugging129 * output is printed even if not desirable). */130 #undef DEBUG131 132 127 #define ctermid posix_ctermid 133 128 … … 181 176 182 177 #define tmpnam posix_tmpnam 183 #define tempnam posix_tempnam184 #define tmpfile posix_tmpfile185 178 #endif 186 179
Note:
See TracChangeset
for help on using the changeset viewer.
