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