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