Added a few comments to indicate awareness of lint complaints.
authorkeie <none@none>
Mon, 21 Jan 1985 14:20:11 +0000 (14:20 +0000)
committerkeie <none@none>
Mon, 21 Jan 1985 14:20:11 +0000 (14:20 +0000)
lang/basic/src.old/graph.c

index d762429..c09b65d 100644 (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 */