shithub: riscv

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