shithub: plan9front

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