shithub: riscv

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