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