git: 9front

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