The definitions of lastline, currline and firstline are made
authorem <none@none>
Thu, 29 Nov 1984 17:26:44 +0000 (17:26 +0000)
committerem <none@none>
Thu, 29 Nov 1984 17:26:44 +0000 (17:26 +0000)
extern in graph.h. The space reserving declaration is made in
graph.c.

lang/basic/src.old/graph.c
lang/basic/src.old/graph.h

index dc68534..0a3a082 100644 (file)
@@ -7,6 +7,10 @@ static char rcs_id[] = "$Header$" ;
 
 List *forwardlabel=0;
 
+Linerecord     *firstline, 
+               *currline, 
+               *lastline;
+
 /* Line management is handled here */
 
 Linerecord *srchline(nr)
index 43300be..acd56e1 100644 (file)
@@ -28,7 +28,7 @@ typedef struct LINERECORD{
        int     fixed;                  /* fixation of block */
 } Linerecord;
 
-Linerecord     *firstline, 
+extern Linerecord      *firstline, 
                *currline, 
                *lastline;
 extern List    *forwardlabel;