ref: 24ca1f2ecfad34b6fdd85ae6a3eb8c3a7750f036 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); }