Changeset 163fc09 in mainline for uspace/lib/posix/source/stdio.c
- Timestamp:
- 2017-04-02T11:47:52Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ce04ea44
- Parents:
- 151f1cc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/stdio.c
r151f1cc r163fc09 590 590 int posix_rename(const char *old, const char *new) 591 591 { 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; 593 597 } 594 598
Note:
See TracChangeset
for help on using the changeset viewer.