shithub: riscv

ref: 065d601916d74f1b5e95d114f7fd8b8bd1747184
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);
}