ref: 8e849fe1e282a99e409b2956a9b8bc5599b8ac4f dir: /sys/src/libc/9sys/read.c/
#include <u.h> #include <libc.h> long read(int fd, void *buf, long n) { return pread(fd, buf, n, -1LL); }