shithub: riscv

ref: 17f0b2ce38f3c845a3bbbe0630185ca8dac684a4
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);
}