The definitions of lastline, currline and firstline are made

extern in graph.h. The space reserving declaration is made in
graph.c.
This commit is contained in:
em 1984-11-29 17:26:44 +00:00
parent b532117b2b
commit 1b8f41d3b2
2 changed files with 5 additions and 1 deletions

View 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)

View file

@ -28,7 +28,7 @@ typedef struct LINERECORD{
int fixed; /* fixation of block */
} Linerecord;
Linerecord *firstline,
extern Linerecord *firstline,
*currline,
*lastline;
extern List *forwardlabel;