shithub: riscv

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