diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-29 22:53:36 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-05 05:56:47 +0900 |
commit | 6fcb37ce15ab5c2d24f79c2430865db11082302b (patch) | |
tree | df09b40e5e1b540cb55f65bfde85d2e1621357e0 /ddb | |
parent | 423e1a794d353aa4f777b50f99b72a7a2b806355 (diff) |
ddb/db_command.c: remove useless forward declaration without definition
* ddb/db_command.c (ddb_display): Remove forward declaration.
Remove ddb_display call.
Diffstat (limited to 'ddb')
-rw-r--r-- | ddb/db_command.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ddb/db_command.c b/ddb/db_command.c index 833b720..b2b2a46 100644 --- a/ddb/db_command.c +++ b/ddb/db_command.c @@ -397,8 +397,6 @@ db_help_cmd() } } -int (*ddb_display)(); - void db_command_loop(void) { @@ -413,9 +411,6 @@ db_command_loop(void) db_prev = db_dot; db_next = db_dot; - if (ddb_display) - (*ddb_display)(); - db_cmd_loop_done = 0; while (!db_cmd_loop_done) { (void) _setjmp(db_recover = &db_jmpbuf); |