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