ref: 6bb619c8db2867ddd9cd19c0aec05065f5ee0cae dir: /lib9/pread-Nt.c/
#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); }