summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/lseek.c
blob: d8b41f88e505ee17ade42f340e4558a16ef2a3e5 (plain)
1
2
3
4
5
6
7
#include <unistd.h>
#include <syscall.h>

off_t lseek(int fildes, off_t offset, int whence)
{
	return syscall(lseek, fildes, offset, whence);
}