shithub: riscv

ref: 57b4f2b8e4c5037f726d71c71479a4561ab03137
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);
}