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