xref: /haiku/src/system/libroot/posix/unistd/lseek.c (revision 93aeb8c3bc3f13cb1f282e3e749258a23790d947)
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