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