git: 9front

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