Changeset 79ea5af in mainline for uspace/lib/posix/source/unistd.c
- Timestamp:
- 2017-03-30T20:47:53Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 67e881c
- Parents:
- ae7bfbbd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/unistd.c
rae7bfbbd r79ea5af 270 270 int posix_rmdir(const char *path) 271 271 { 272 return negerrno(rmdir, path); 272 if (rcerrno(vfs_unlink_path, path) != EOK) 273 return -1; 274 else 275 return 0; 273 276 } 274 277 … … 281 284 int posix_unlink(const char *path) 282 285 { 283 return negerrno(unlink, path); 286 if (rcerrno(vfs_unlink_path, path) != EOK) 287 return -1; 288 else 289 return 0; 284 290 } 285 291
Note:
See TracChangeset
for help on using the changeset viewer.