shithub: riscv

ref: 2731ae50d3226381f2151b590f8f4f5c52545e5f
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);
}