summaryrefslogtreecommitdiff
path: root/lib9/seek.c
blob: 0fb5282acc138932298cb419c5b1d5455e82d818 (plain)
1
2
3
4
5
6
7
8
9
#include "lib9.h"
#include <sys/types.h>
#include <fcntl.h>

vlong
seek(int fd, vlong where, int from)
{
	return lseek(fd, where, from);
}