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