This update adds precise garbage collection to the compiler and the runtime.
[IRC.git] / Robust / src / Runtime / GenericHashtable.h
index eb7d9846bc884d9bacf9a5ac715bd5f16bef693c..3a65a4c48fa1c6d3cf3a71e245598e9eb6e7ac1e 100755 (executable)
@@ -33,7 +33,7 @@ struct geniterator {
 
 struct genhashtable * genallocatehashtable(unsigned int (*hash_function)(void *),int (*comp_function)(void *,void *));
 void genfreehashtable(struct genhashtable * ht);
-
+void genrehash(struct genhashtable * ht);
 void * getnext(struct genhashtable *,void *);
 int genputtable(struct genhashtable *, void *, void *);
 void * gengettable(struct genhashtable *, void *);