shithub: riscv

ref: 61f826d45f06a7890fb9a5fa97f9a523061f5e6f
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);
}