shithub: riscv

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