shithub: front

ref: 8be7f27b758ef9ef818f68db0d8bcb7b038eae0e
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);
}