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