Index: dwarf2read.c =================================================================== RCS file: /cvs/src/src/gdb/dwarf2read.c,v retrieving revision 1.49 diff -c -3 -p -r1.49 dwarf2read.c *** dwarf2read.c 28 Feb 2002 11:21:16 -0000 1.49 --- dwarf2read.c 17 May 2002 13:09:18 -0000 *************** *** 37,42 **** --- 37,43 ---- #include "demangle.h" #include "expression.h" #include "filenames.h" /* for DOSish file names */ + #include "dwarf2read.h" #include "language.h" #include "complaints.h" Index: dwarf2cfi.c =================================================================== RCS file: /cvs/src/src/gdb/dwarf2cfi.c,v retrieving revision 1.1.2.2 diff -c -3 -p -r1.1.2.2 dwarf2cfi.c *** dwarf2cfi.c 14 May 2002 09:50:39 -0000 1.1.2.2 --- dwarf2cfi.c 17 May 2002 13:09:18 -0000 *************** *** 28,33 **** --- 28,34 ---- #include "elf/dwarf2.h" #include "inferior.h" #include "regcache.h" + #include "dwarf2read.h" #include "dwarf2cfi.h" /* Common Information Entry - holds information that is shared among many *************** static struct fde_array fde_chunks; *** 184,199 **** /* Obstack for allocating temporary storage used during unwind operations. */ static struct obstack unwind_tmp_obstack; - extern file_ptr dwarf_frame_offset; - extern unsigned int dwarf_frame_size; - extern file_ptr dwarf_eh_frame_offset; - extern unsigned int dwarf_eh_frame_size; - static char *dwarf_frame_buffer; - - - extern char *dwarf2_read_section (struct objfile *objfile, file_ptr offset, - unsigned int size); static struct fde_unit *fde_unit_alloc (void); static struct cie_unit *cie_unit_alloc (void); --- 185,191 ----