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