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