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

@ -370,21 +370,6 @@ mode_key_init_trees(void)
}
}
void
mode_key_free_trees(void)
{
const struct mode_key_table *mtab;
struct mode_key_binding *mbind;
for (mtab = mode_key_tables; mtab->name != NULL; mtab++) {
while (!SPLAY_EMPTY(mtab->tree)) {
mbind = SPLAY_ROOT(mtab->tree);
SPLAY_REMOVE(mode_key_tree, mtab->tree, mbind);
xfree(mbind);
}
}
}
void
mode_key_init(struct mode_key_data *mdata, struct mode_key_tree *mtree)
{