dead code

R=r
DELTA=20  (0 added, 20 deleted, 0 changed)
OCL=31584
CL=31598
This commit is contained in:
Russ Cox 2009-07-14 09:28:42 -07:00
parent be16caf872
commit 10e995fba8

View File

@ -315,26 +315,6 @@ parsemethod(char **pp, char *ep, char **methp)
return 1; 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 void mark(Sym*);
static int markdepth; static int markdepth;