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