aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/venti/srv/hproc.c
blob: 42933920aa0f37e4d9e7835ae1b5acd99845327d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "stdinc.h"
#include "dat.h"
#include "fns.h"
#include "xml.h"

int
hproc(HConnect *c)
{
	int r;
	
	if((r = hsettext(c)) < 0)
		return r;
	hprint(&c->hout, "/proc only implemented on Plan 9\n");
	hflush(&c->hout);
	return 0;
}