shithub: purgatorio

ref: c3101e4da486b2bf2e8b911bcb62dd8ec31c41bf
dir: /lib9/seek.c/

View raw version
#include "lib9.h"
#include <sys/types.h>
#include <fcntl.h>

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