diff options
author | Doug Evans <dje@google.com> | 2015-02-06 11:32:01 -0800 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2015-02-06 11:32:01 -0800 |
commit | f176c4b57f57c8965807256bad1cd487b92b5457 (patch) | |
tree | 269aae5a6e59f12140b03a631e169200b4ba8ef1 /gdb/symfile.h | |
parent | 8dfef1bd769223b3abfffabf8bd13a9b74258231 (diff) | |
download | gdb-f176c4b57f57c8965807256bad1cd487b92b5457.zip gdb-f176c4b57f57c8965807256bad1cd487b92b5457.tar.gz gdb-f176c4b57f57c8965807256bad1cd487b92b5457.tar.bz2 |
Move clear_symtab_users, deduce_language_from_filename decls to better place.
gdb/ChangeLog:
* symtab.h (clear_symtab_users, deduce_language_from_filename): Move
* symfile.h (clear_symtab_users, deduce_language_from_filename): ...
to here.
Diffstat (limited to 'gdb/symfile.h')
-rw-r--r-- | gdb/symfile.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/symfile.h b/gdb/symfile.h index d5ae4ad..a22ee04 100644 --- a/gdb/symfile.h +++ b/gdb/symfile.h @@ -434,6 +434,10 @@ extern void add_compunit_symtab_to_objfile (struct compunit_symtab *cu); extern void add_symtab_fns (enum bfd_flavour flavour, const struct sym_fns *); +extern void clear_symtab_users (int add_flags); + +extern enum language deduce_language_from_filename (const char *); + /* This enum encodes bit-flags passed as ADD_FLAGS parameter to symbol_file_add, etc. */ |