git: 9front

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