aboutsummaryrefslogtreecommitdiff
path: root/src/lib9/write.c
blob: aa32db7f14232733d4b893f4ac4489dc7b048721 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <u.h>
#define NOPLAN9DEFINES
#include <libc.h>

long
p9write(int f, void *av, long n)
{
	char *a;
	long m, t;

	a = av;
	t = 0;
	while(t < n){
		m = write(f, a+t, n-t);
		if(m <= 0){
			if(t == 0)
				return m;
			break;
		}
		t += m;
	}
	return t;
}