Changeset 75406dc in mainline for uspace/lib/posix/stdio.c


Ignore:
Timestamp:
2011-07-28T17:39:51Z (14 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
955c2b0
Parents:
58115ae
Message:

Additional wrappers and fixes for VFS functions.

File:
1 edited

Legend:

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

    r58115ae r75406dc  
    722722
    723723/**
     724 * Rename a file or directory.
     725 *
     726 * @param old
     727 * @param new
     728 * @return Zero on success, -1 (with errno set) otherwise.
     729 */
     730int posix_rename(const char *old, const char *new)
     731{
     732        return errnify(rename, old, new);
     733}
     734
     735/**
    724736 *
    725737 * @param s
Note: See TracChangeset for help on using the changeset viewer.