shithub: purgatorio

ref: a600cca5ff367ca7e7c64a14a8e87ba376780f6d
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);
}