git: 9front

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