ref: b1d1fa04b952d19064ecc9c4b0a6c07e39e71c3b dir: /sys/src/libc/9sys/write.c/
#include <u.h> #include <libc.h> long write(int fd, void *buf, long n) { return pwrite(fd, buf, n, -1LL); }