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