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