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