diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-20 13:53:58 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-20 21:55:35 +0100 |
commit | e3ad43e464b6d5112aefb8c3a8a292023cf18731 (patch) | |
tree | a61a2e4d7e3397ebdf615fd975e96b2854279c52 /ddb/db_sym.c | |
parent | eda770864b0c42416fb3239db2c15544840e636f (diff) | |
download | gnumach-e3ad43e464b6d5112aefb8c3a8a292023cf18731.tar.gz gnumach-e3ad43e464b6d5112aefb8c3a8a292023cf18731.tar.bz2 gnumach-e3ad43e464b6d5112aefb8c3a8a292023cf18731.zip |
Fix implicit declaration of function
* ddb/db_sym.c (aout_db_sym_init): Remove forward declaration.
* ddb/db_sym.h (aout_db_sym_init): Add prototype.
* i386/i386at/model_dep.c (aout_db_sym_init): Fix call.
[MACH_KDB]: Include ddb/db_sym.h.
[MACH_KDB]: Add comment after else and endif.
Diffstat (limited to 'ddb/db_sym.c')
-rw-r--r-- | ddb/db_sym.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ddb/db_sym.c b/ddb/db_sym.c index 98f265e6..0819e08e 100644 --- a/ddb/db_sym.c +++ b/ddb/db_sym.c @@ -511,7 +511,7 @@ void db_free_symbol(db_sym_t s) * Switch into symbol-table specific routines */ -extern boolean_t aout_db_sym_init(), aout_db_line_at_pc(); +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(); |