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