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