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