This commit is contained in:
rsc 2006-02-14 19:42:28 +00:00
parent 2eef1fa316
commit a38a183626
22 changed files with 187 additions and 144 deletions

View file

@ -5,20 +5,6 @@
#include "dat.h"
#include "protos.h"
static void
p_compile(Filter *f)
{
sysfatal("unknown ninep field: %s", f->s);
}
static int
p_filter(Filter *f, Msg *m)
{
USED(f);
USED(m);
return 0;
}
static int
p_seprint(Msg *m)
{
@ -46,10 +32,11 @@ p_seprint(Msg *m)
Proto ninep =
{
"ninep",
p_compile,
p_filter,
nil,
nil,
p_seprint,
nil,
nil,
nil,
defaultframer,
};