shithub: riscv

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