shithub: riscv

ref: bf10f672ecc473547b44f98c5fda0754adf4b1b6
dir: /sys/src/libc/9sys/write.c/

View raw version
#include	<u.h>
#include	<libc.h>

long
write(int fd, void *buf, long n)
{
	return pwrite(fd, buf, n, -1LL);
}