shithub: plan9front

ref: 204a96f163641de8ebca76a0b0873412b3b333aa
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);
}