386BSD 0.0 development
authorWilliam F. Jolitz <wjolitz@soda.berkeley.edu>
Sat, 23 Jan 1988 06:43:19 +0000 (22:43 -0800)
committerWilliam F. Jolitz <wjolitz@soda.berkeley.edu>
Sat, 23 Jan 1988 06:43:19 +0000 (22:43 -0800)
Work on file usr/src/usr.bin/gcc/cc1/gdbfiles.h

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.0/src

usr/src/usr.bin/gcc/cc1/gdbfiles.h [new file with mode: 0644]

diff --git a/usr/src/usr.bin/gcc/cc1/gdbfiles.h b/usr/src/usr.bin/gcc/cc1/gdbfiles.h
new file mode 100644 (file)
index 0000000..f58d301
--- /dev/null
@@ -0,0 +1,15 @@
+
+/* 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;