148099Sbostic /*-
2*62138Sbostic  * Copyright (c) 1980, 1993
3*62138Sbostic  *	The Regents of the University of California.  All rights reserved.
422581Sdist  *
548099Sbostic  * %sccs.include.redist.c%
648099Sbostic  *
7*62138Sbostic  *	@(#)filetab.h	8.1 (Berkeley) 06/06/93
822581Sdist  */
95491Slinton 
105491Slinton /*
115491Slinton  * definition of file table
125491Slinton  */
135491Slinton 
145491Slinton typedef struct {
155491Slinton 	LINENO line;
165491Slinton 	ADDRESS addr;
175491Slinton 	char *filename;
185491Slinton 	LINENO lineindex;
195491Slinton } FILETAB;
205491Slinton 
215491Slinton FILETAB *filetab;
22