Changeset 163fc09 in mainline for uspace/lib/posix/source/stdio.c


Ignore:
Timestamp:
2017-04-02T11:47:52Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ce04ea44
Parents:
151f1cc
Message:

Rename rename() to vfs_rename_path()

File:
1 edited

Legend:

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

    r151f1cc r163fc09  
    590590int posix_rename(const char *old, const char *new)
    591591{
    592         return negerrno(rename, old, new);
     592        int rc = rcerrno(vfs_rename_path, old, new);
     593        if (rc != EOK)
     594                return -1;
     595        else
     596                return 0;
    593597}
    594598
Note: See TracChangeset for help on using the changeset viewer.