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