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