Changes in uspace/lib/posix/source/unistd.c [bf963b9:a3da2b2] in mainline
- File:
-
- 1 edited
-
uspace/lib/posix/source/unistd.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/unistd.c
rbf963b9 ra3da2b2 35 35 36 36 #define LIBPOSIX_INTERNAL 37 #define __POSIX_DEF__(x) posix_##x38 37 39 38 #include "internal/common.h" … … 221 220 { 222 221 return errnify(write, fildes, buf, nbyte); 223 }224 225 /**226 * Reposition read/write file offset227 *228 * @param fildes File descriptor of the opened file.229 * @param offset New offset in the file.230 * @param whence The position from which the offset argument is specified.231 * @return Upon successful completion, returns the resulting offset232 * as measured in bytes from the beginning of the file, -1 otherwise.233 */234 posix_off_t posix_lseek(int fildes, posix_off_t offset, int whence)235 {236 return errnify(lseek, fildes, offset, whence);237 222 } 238 223 … … 436 421 } 437 422 438 unsigned int posix_alarm(unsigned int seconds)439 {440 not_implemented();441 return 0;442 }443 444 423 /** @} 445 424 */
Note:
See TracChangeset
for help on using the changeset viewer.
