code: 9ferno

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