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