shithub: riscv

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