Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/stdio.h

    r4cf8ca6 r11544f4  
    116116extern int posix_remove(const char *path);
    117117
     118/* Renaming Files */
     119extern int posix_rename(const char *old, const char *new);
     120
    118121/* Temporary Files */
    119122#undef L_tmpnam
    120123#define L_tmpnam PATH_MAX
    121124extern char *posix_tmpnam(char *s);
     125extern char *posix_tempnam(const char *dir, const char *pfx);
     126extern FILE *posix_tmpfile(void);
    122127
    123128#ifndef LIBPOSIX_INTERNAL
     
    170175        #define remove posix_remove
    171176
     177        #define rename posix_rename
     178
    172179        #define tmpnam posix_tmpnam
     180        #define tempnam posix_tempnam
     181        #define tmpfile posix_tmpfile
    173182#endif
    174183
Note: See TracChangeset for help on using the changeset viewer.