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