summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--set_linked_lists.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/set_linked_lists.c b/set_linked_lists.c
index 8cc77c4..e865b95 100644
--- a/set_linked_lists.c
+++ b/set_linked_lists.c
@@ -239,6 +239,10 @@ int elt_of_set(const set s) {
return -1; // should raise exception... hope this will be handled properly
}
+int elt_of_set_heur(const set s, int h) {
+ return elt_of_set(s);
+}
+
void set_add_ip(int x, set s) {
element prev, iter, e;