code: purgatorio

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