diff options
author | Tom Tromey <tromey@redhat.com> | 2013-11-25 09:51:25 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-12-06 12:13:55 -0700 |
commit | 830f7a41e3fb3572d816a9ad257e6d470b8de406 (patch) | |
tree | 967f99c852d7e3f7a04ecd7f31b8c59f3d442721 /gdb | |
parent | e1b06ae220497540d09b295b885dff0c0eb85c4c (diff) | |
download | gdb-830f7a41e3fb3572d816a9ad257e6d470b8de406.zip gdb-830f7a41e3fb3572d816a9ad257e6d470b8de406.tar.gz gdb-830f7a41e3fb3572d816a9ad257e6d470b8de406.tar.bz2 |
remove unnecessary declaration
This removes an unnecessary declaration from minsyms.c.
2013-12-06 Tom Tromey <tromey@redhat.com>
* minsyms.c (get_symbol_leading_char): Remove unnecessary
declaration.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/minsyms.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 476e7bd..3449b72 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2013-12-06 Tom Tromey <tromey@redhat.com> + * minsyms.c (get_symbol_leading_char): Remove unnecessary + declaration. + +2013-12-06 Tom Tromey <tromey@redhat.com> + * psympriv.h (struct partial_symtab) <user>: Move earlier. 2013-12-06 Tom Tromey <tromey@redhat.com> diff --git a/gdb/minsyms.c b/gdb/minsyms.c index 9044803..db830c7 100644 --- a/gdb/minsyms.c +++ b/gdb/minsyms.c @@ -843,8 +843,6 @@ lookup_minimal_symbol_and_objfile (const char *name) /* Return leading symbol character for a BFD. If BFD is NULL, return the leading symbol character from the main objfile. */ -static int get_symbol_leading_char (bfd *); - static int get_symbol_leading_char (bfd *abfd) { |