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