29,35c29 < #define HT_INIT(root) do { \ < (root)->hth_table_length = 0; \ < (root)->hth_table = NULL; \ < (root)->hth_n_entries = 0; \ < (root)->hth_load_limit = 0; \ < (root)->hth_prime_idx = -1; \ < } while (0) --- > 62c56 < --- > #define HT_INIT(name, head) 103c97,105 < int _##name##_HT_REP_OK(struct name *ht); \ --- > int _##name##_HT_REP_OK(struct name *ht); \ > void _##name##_HT_INIT(HT_HEAD(name, type) root){ \ > (root)->hth_table_length = 0; \ > (root)->hth_table = NULL; \ > (root)->hth_n_entries = 0; \ > (root)->hth_load_limit = 0; \ > (root)->hth_prime_idx = -1; \ > }\ > \