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:
parent
b532117b2b
commit
1b8f41d3b2
|
@ -7,6 +7,10 @@ static char rcs_id[] = "$Header$" ;
|
||||||
|
|
||||||
List *forwardlabel=0;
|
List *forwardlabel=0;
|
||||||
|
|
||||||
|
Linerecord *firstline,
|
||||||
|
*currline,
|
||||||
|
*lastline;
|
||||||
|
|
||||||
/* Line management is handled here */
|
/* Line management is handled here */
|
||||||
|
|
||||||
Linerecord *srchline(nr)
|
Linerecord *srchline(nr)
|
||||||
|
|
|
@ -28,7 +28,7 @@ typedef struct LINERECORD{
|
||||||
int fixed; /* fixation of block */
|
int fixed; /* fixation of block */
|
||||||
} Linerecord;
|
} Linerecord;
|
||||||
|
|
||||||
Linerecord *firstline,
|
extern Linerecord *firstline,
|
||||||
*currline,
|
*currline,
|
||||||
*lastline;
|
*lastline;
|
||||||
extern List *forwardlabel;
|
extern List *forwardlabel;
|
||||||
|
|
Loading…
Reference in a new issue