shithub: riscv

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