Commit 10e995fb authored by Russ Cox's avatar Russ Cox

dead code

R=r
DELTA=20  (0 added, 20 deleted, 0 changed)
OCL=31584
CL=31598
parent be16caf8
......@@ -315,26 +315,6 @@ parsemethod(char **pp, char *ep, char **methp)
return 1;
}
static int
importcmp(const void *va, const void *vb)
{
Import *a, *b;
a = *(Import**)va;
b = *(Import**)vb;
return strcmp(a->name, b->name);
}
static int
symcmp(const void *va, const void *vb)
{
Sym *a, *b;
a = *(Sym**)va;
b = *(Sym**)vb;
return strcmp(a->name, b->name);
}
static void mark(Sym*);
static int markdepth;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment