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