gdbfiles.h 353 B

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