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