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