git: 9front

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