1 /* Copyright (c) 1982 Regents of the University of California */
2 
3 /* static char sccsid[] = "@(#)linetab.h 1.2 01/18/82"; */
4 
5 /*
6  * definition of line number information table
7  */
8 
9 typedef struct {
10 	LINENO line;
11 	ADDRESS addr;
12 } LINETAB;
13 
14 LINETAB *linetab;
15