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