Changes in uspace/lib/posix/stdio.h [4cf8ca6:11544f4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdio.h
r4cf8ca6 r11544f4 116 116 extern int posix_remove(const char *path); 117 117 118 /* Renaming Files */ 119 extern int posix_rename(const char *old, const char *new); 120 118 121 /* Temporary Files */ 119 122 #undef L_tmpnam 120 123 #define L_tmpnam PATH_MAX 121 124 extern char *posix_tmpnam(char *s); 125 extern char *posix_tempnam(const char *dir, const char *pfx); 126 extern FILE *posix_tmpfile(void); 122 127 123 128 #ifndef LIBPOSIX_INTERNAL … … 170 175 #define remove posix_remove 171 176 177 #define rename posix_rename 178 172 179 #define tmpnam posix_tmpnam 180 #define tempnam posix_tempnam 181 #define tmpfile posix_tmpfile 173 182 #endif 174 183
Note:
See TracChangeset
for help on using the changeset viewer.