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