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