Changeset ae7bfbbd in mainline for uspace/lib/c


Ignore:
Timestamp:
2017-03-30T20:00:54Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
79ea5af
Parents:
23a0368
Message:

Remove remove()

Location:
uspace/lib/c
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/vfs/vfs.c

    r23a0368 rae7bfbbd  
    959959}
    960960
    961 /** Remove directory entry.
    962  *
    963  * @param path Path
    964  * @return 0 on success. On error returns -1 and sets errno.
    965  */
    966 int remove(const char *path)
    967 {
    968         return unlink(path);
    969 }
    970 
    971961/** Change working directory.
    972962 *
  • uspace/lib/c/include/stdio.h

    r23a0368 rae7bfbbd  
    143143/* Misc file functions */
    144144extern int rename(const char *, const char *);
    145 extern int remove(const char *);
    146145
    147146#endif
Note: See TracChangeset for help on using the changeset viewer.