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