Removed unused variables

This commit is contained in:
Jack Jansen 1995-10-03 14:38:41 +00:00
parent 8426477bbb
commit 95ffa23597
2 changed files with 1 additions and 4 deletions

View File

@ -2480,7 +2480,6 @@ com_arglist(c, n)
for (i = 0; i < nch; i++) {
node *ch = CHILD(n, i);
node *fp;
char *name;
if (TYPE(ch) == STAR)
break;
REQ(ch, fpdef); /* fpdef: NAME | '(' fplist ')' */

View File

@ -557,7 +557,6 @@ find_frozen(name)
char *name;
{
struct frozen *p;
object *co;
for (p = frozen_modules; ; p++) {
if (p->name == NULL)
@ -818,8 +817,7 @@ imp_get_frozen_object(self, args)
object *args;
{
char *name;
int ret;
object *m;
if (!newgetargs(args, "s", &name))
return NULL;
return get_frozen_object(name);