From 5d397462e45653965e1be64644a3c635eb8ef9cb Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 13 Nov 2009 07:00:54 +0000 Subject: Zap unused functions, prompted by deraadt. --- key-bindings.c | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'key-bindings.c') diff --git a/key-bindings.c b/key-bindings.c index d15e0186..5a0aeee0 100644 --- a/key-bindings.c +++ b/key-bindings.c @@ -187,20 +187,6 @@ key_bindings_init(void) } } -void -key_bindings_free(void) -{ - struct key_binding *bd; - - key_bindings_clean(); - while (!SPLAY_EMPTY(&key_bindings)) { - bd = SPLAY_ROOT(&key_bindings); - SPLAY_REMOVE(key_bindings, &key_bindings, bd); - cmd_list_free(bd->cmdlist); - xfree(bd); - } -} - void printflike2 key_bindings_error(struct cmd_ctx *ctx, const char *fmt, ...) { -- cgit