shithub: riscv

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