code: 9ferno

ref: 0cb3dc37ca3d619e5f2017a592bc793094b9f7e4
dir: /lib9/pread-Nt.c/

View raw version
#include "lib9.h"

long
pread(int fd, void *buf, long n, vlong offset)
{
	if(seek(fd, offset, 0) < 0)
		return -1;
	return read(fd, buf, n);
}