code: 9ferno

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