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