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