diff options
Diffstat (limited to 'ddb/db_sym.c')
-rw-r--r-- | ddb/db_sym.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ddb/db_sym.c b/ddb/db_sym.c index fede7dc4..c0ad7bfc 100644 --- a/ddb/db_sym.c +++ b/ddb/db_sym.c @@ -37,6 +37,7 @@ #include <ddb/db_output.h> #include <ddb/db_sym.h> #include <ddb/db_task_thread.h> +#include <ddb/db_aout.h> #include <vm/vm_map.h> /* vm_map_t */ @@ -287,9 +288,6 @@ db_name_is_ambiguous(sym_name) return FALSE; } - -db_sym_t db_search_in_task_symbol(); - /* * Find the closest symbol to val, and return its name * and the difference between val and the symbol found. @@ -509,10 +507,6 @@ void db_free_symbol(db_sym_t s) * Switch into symbol-table specific routines */ -extern boolean_t aout_db_line_at_pc(); -extern db_sym_t aout_db_lookup(), aout_db_search_symbol(); -extern void aout_db_symbol_values(); - extern boolean_t coff_db_sym_init(), coff_db_line_at_pc(); extern db_sym_t coff_db_lookup(), coff_db_search_symbol(); extern void coff_db_symbol_values(); |