shithub: riscv

ref: 6a8125283c2812c71ecdd7f5f5f00bbf4dbb32c2
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);
}