some changes to make smaller

This commit is contained in:
ceriel
1987-05-21 09:37:28 +00:00
parent dd2cf6bbaa
commit ed2d6ab75b
6 changed files with 184 additions and 144 deletions

View File

@@ -43,6 +43,17 @@ Enter(name, kind, type, pnam)
return df;
}
EnterType(name, type)
char *name;
struct type *type;
{
/* Enter a type definition for "name" and type
"type" in the Current Scope.
*/
Enter(name, D_TYPE, type, 0);
}
EnterEnumList(Idlist, type)
struct node *Idlist;
register struct type *type;