shithub: riscv

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