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