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