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