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