Zap unused functions, prompted by deraadt.

This commit is contained in:
Nicholas Marriott
2009-11-13 07:00:54 +00:00
parent 5ae542e7ee
commit 5d397462e4
3 changed files with 0 additions and 31 deletions

View File

@ -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, ...)
{