home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / cc-61.0.1 / cc / gdbfiles.h < prev    next >
C/C++ Source or Header  |  1990-10-08  |  353b  |  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.