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

index 4364754..fcc1e1c 100644 (file)
@@ -67,9 +67,9 @@ List  *datalist=0;
 datastmt()
 {
        List *l,*l1;
-       l= (List *) salloc(sizeof(List));
+       /*NOSTRICT*/ l= (List *) salloc(sizeof(List));
        l->linenr= currline->linenr;
-       l->emlabel= (long) ftell(datfile);
+       /*NOSTRICT?*/ l->emlabel= (long) ftell(datfile);
        if( datalist==0) 
        {
                datalist=l;