Sign in
plan9port
/
plan9
/
d296c18e379547218c4c50445c56e725ec3be91d
/
.
/
src
/
cmd
/
venti
/
srv
/
hproc.c
blob: 42933920aa0f37e4d9e7835ae1b5acd99845327d [
file
] [
log
] [
blame
]
#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
;
}