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