Added a few comments to indicate awareness of lint complaints.

This commit is contained in:
keie 1985-01-21 14:20:11 +00:00
parent 0c2aee4835
commit 56a8cd53b6

View file

@ -14,7 +14,7 @@ Linerecord *firstline,
List *newlist()
{
List *l;
l= (List *) salloc(sizeof(List));
/*NOSTRICT*/ l= (List *) salloc(sizeof(List));
return(l);
}
@ -75,7 +75,7 @@ int nr;
}
/* make new EM block structure */
l= (Linerecord *) salloc(sizeof(*l));
/*NOSTRICT*/ l= (Linerecord *) salloc(sizeof(*l));
l->emlabel= frwrd? frwrd->emlabel: genlabel();
l->linenr= nr;
/* save offset into tmpfile too */