1 /* 2 ** Copyright 2001, Manuel J. Petit. All rights reserved. 3 ** Distributed under the terms of the NewOS License. 4 */ 5 6 #include <unistd.h> 7 #include <syscalls.h> 8 9 10 off_t 11 lseek(int fd, off_t pos, int whence) 12 { 13 return _kern_seek(fd, pos, whence); 14 } 15