code: 9ferno

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