shithub: riscv

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