home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / benchmarks / itc / gcc / gdbfiles.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-08-30  |  353 b   |  16 lines

  1.  
  2. /* Alist matching source file names to GDB filenumbers.
  3.    Used in output_source_line.  */
  4.  
  5. struct gdbfile
  6. {
  7.   struct gdbfile *next;
  8.   char *name;            /* name of source file */
  9.   int filenum;            /* Assigned number */
  10.   int nlines;            /* # lines generated for this source file */
  11. };
  12.  
  13. /* Chain of all `struct gdbfile's.  */
  14.  
  15. extern struct gdbfile *gdbfiles;
  16.