Initialize the hash table. */
| 144 | |
| 145 | /* Initialize the hash table. */ |
| 146 | extern void |
| 147 | hash_init (void) |
| 148 | { |
| 149 | src_to_dest = hash_initialize (INITIAL_TABLE_SIZE, NULL, |
| 150 | src_to_dest_hash, |
| 151 | src_to_dest_compare, |
| 152 | src_to_dest_free); |
| 153 | if (src_to_dest == NULL) |
| 154 | xalloc_die (); |
| 155 | } |
no test coverage detected