Blob


1 #include "stdinc.h"
2 #include "dat.h"
3 #include "fns.h"
4 #include "xml.h"
6 int
7 hproc(HConnect *c)
8 {
9 int r;
11 if((r = hsettext(c)) < 0)
12 return r;
13 hprint(&c->hout, "/proc only implemented on Plan 9\n");
14 hflush(&c->hout);
15 return 0;
16 }