URI:
       thproc.c - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       thproc.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 }