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