plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

hproc.c (234B)


      1 #include "stdinc.h"
      2 #include "dat.h"
      3 #include "fns.h"
      4 #include "xml.h"
      5 
      6 int
      7 hproc(HConnect *c)
      8 {
      9 	int r;
     10 
     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 }