aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/venti/srv/hproc.c
blob: 3da217cec571269b8f7e7e6776ade1a87592fc6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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;
}