Changeset 1cc4a09 in mainline for uspace/lib/posix/unistd.h
- Timestamp:
- 2011-08-14T00:19:31Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b705ecc
- Parents:
- 6d100fd (diff), e0e922d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/unistd.h
r6d100fd r1cc4a09 72 72 /* File Manipulation */ 73 73 extern int posix_close(int fildes); 74 75 74 extern ssize_t posix_read(int fildes, void *buf, size_t nbyte); 76 75 extern ssize_t posix_write(int fildes, const void *buf, size_t nbyte); 77 78 76 extern int posix_fsync(int fildes); 79 77 extern int posix_ftruncate(int fildes, posix_off_t length); 80 81 78 extern int posix_rmdir(const char *path); 82 79 extern int posix_unlink(const char *path); 83 84 80 extern int posix_dup(int fildes); 85 81 extern int posix_dup2(int fildes, int fildes2);
Note:
See TracChangeset
for help on using the changeset viewer.