git: 9front

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