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