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