Initial import, 0.1 + pk 0.2.4-B1
[unix-history] / gnu / usr.bin / gcc1 / cc1 / gdbfiles.h
/* Alist matching source file names to GDB filenumbers.
Used in output_source_line. */
struct gdbfile
{
struct gdbfile *next;
char *name; /* name of source file */
int filenum; /* Assigned number */
int nlines; /* # lines generated for this source file */
};
/* Chain of all `struct gdbfile's. */
extern struct gdbfile *gdbfiles;