Blame


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