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