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