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