newer version

This commit is contained in:
ceriel
1986-06-06 02:22:09 +00:00
parent 49287324b3
commit 702c0bd19a
17 changed files with 224 additions and 301 deletions

View File

@@ -36,7 +36,7 @@ open_scope(scopetype)
assert(scopetype == OPENSCOPE || scopetype == CLOSEDSCOPE);
clear((char *) sc, sizeof (*sc));
clear((char *) sc, sizeof (struct scope));
sc->sc_scopeclosed = scopetype == CLOSEDSCOPE;
sc->sc_level = proclevel;
if (scopetype == OPENSCOPE) {
@@ -48,7 +48,7 @@ open_scope(scopetype)
CurrVis = ls;
}
init_scope()
InitScope()
{
register struct scope *sc = new_scope();
register struct scopelist *ls = new_scopelist();