shithub: riscv

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