code: 9ferno

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