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