shithub: riscv

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