From: keie Date: Mon, 21 Jan 1985 14:20:11 +0000 (+0000) Subject: Added a few comments to indicate awareness of lint complaints. X-Git-Tag: release-5-5~5751 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=56a8cd53b6e5a58c3f35a74f1e6e4f9b8637d971;p=ack.git Added a few comments to indicate awareness of lint complaints. --- diff --git a/lang/basic/src.old/graph.c b/lang/basic/src.old/graph.c index d7624292a..c09b65dbc 100644 --- a/lang/basic/src.old/graph.c +++ b/lang/basic/src.old/graph.c @@ -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 */