shithub: riscv

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