shithub: riscv

ref: 5aa2a1a845dd073fdf6c2772f1d0e3e8bc04493c
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);
}