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