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