shithub: riscv

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