/* ** Copyright 2001, Manuel J. Petit. All rights reserved. ** Distributed under the terms of the NewOS License. */ #include #include off_t lseek(int fd, off_t pos, int whence) { return _kern_seek(fd, pos, whence); }