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