summaryrefslogtreecommitdiff
path: root/lib/splay.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/splay.h')
-rw-r--r--lib/splay.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/lib/splay.h b/lib/splay.h
index e1a1fec88..eb9f65f1e 100644
--- a/lib/splay.h
+++ b/lib/splay.h
@@ -40,19 +40,13 @@ struct Curl_tree *Curl_splayinsert(struct curltime key,
struct Curl_tree *t,
struct Curl_tree *newnode);
-#if 0
-struct Curl_tree *Curl_splayremove(struct curltime key,
- struct Curl_tree *t,
- struct Curl_tree **removed);
-#endif
-
struct Curl_tree *Curl_splaygetbest(struct curltime key,
struct Curl_tree *t,
struct Curl_tree **removed);
-int Curl_splayremovebyaddr(struct Curl_tree *t,
- struct Curl_tree *removenode,
- struct Curl_tree **newroot);
+int Curl_splayremove(struct Curl_tree *t,
+ struct Curl_tree *removenode,
+ struct Curl_tree **newroot);
#define Curl_splaycomparekeys(i,j) ( ((i.tv_sec) < (j.tv_sec)) ? -1 : \
( ((i.tv_sec) > (j.tv_sec)) ? 1 : \