home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
gnu
/
g__src3
/
gdbfiles.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-23
|
353b
|
16 lines
/* 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;