summaryrefslogtreecommitdiff
path: root/gdb/dbxread.c
diff options
context:
space:
mode:
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>2001-09-05 02:54:15 +0000
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>2001-09-05 02:54:15 +0000
commit5461570d7a420264a220a10f07e6e071af6796b5 (patch)
treea577507f1372fb70caffa7c336ec362cebd64422 /gdb/dbxread.c
parent31ae56548766b9d2a3466d78ff77d699bf8331e1 (diff)
downloadgdb-5461570d7a420264a220a10f07e6e071af6796b5.tar.gz
2001-09-04 Elena Zannoni <ezannoni@redhat.com>
From Daniel Jacobowitz <drow@mvista.com> * dbxread.c (free_header_files): Make global. (init_header_files): Likewise. * stabsread.h (free_header_files): Add prototype. (init_header_files): Likewise. * mdebugread.c (mdebug_build_psymtabs): Initialize properly before using the stabs debug reader.
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r--gdb/dbxread.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c
index ba60fe10511..da55dde3723 100644
--- a/gdb/dbxread.c
+++ b/gdb/dbxread.c
@@ -270,10 +270,6 @@ extern void _initialize_dbxread (void);
static void process_now (struct objfile *);
-static void free_header_files (void);
-
-static void init_header_files (void);
-
static void read_ofile_symtab (struct partial_symtab *);
static void dbx_psymtab_to_symtab (struct partial_symtab *);
@@ -319,7 +315,7 @@ static struct partial_symtab *start_psymtab (struct objfile *, char *,
/* Free up old header file tables */
-static void
+void
free_header_files (void)
{
if (this_object_header_files)
@@ -332,7 +328,7 @@ free_header_files (void)
/* Allocate new header file tables */
-static void
+void
init_header_files (void)
{
n_allocated_this_object_header_files = 10;