aboutsummaryrefslogtreecommitdiff
path: root/lib/llist.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-01-23 09:15:39 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-01-24 10:29:18 +0100
commitc0d7b05c41cc58144d78db022212b8d4d248c9bf (patch)
treec1d5c7393bf87238182423b9fdbd41fa7badef48 /lib/llist.h
parent77450003383df8469b74916a3c2d54d4b57226ff (diff)
llist: removed unused Curl_llist_move()
(and the corresponding unit test) Closes #4842
Diffstat (limited to 'lib/llist.h')
-rw-r--r--lib/llist.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/llist.h b/lib/llist.h
index a5e2ecbfb..0178c4259 100644
--- a/lib/llist.h
+++ b/lib/llist.h
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -47,7 +47,4 @@ void Curl_llist_remove(struct curl_llist *, struct curl_llist_element *,
void *);
size_t Curl_llist_count(struct curl_llist *);
void Curl_llist_destroy(struct curl_llist *, void *);
-void Curl_llist_move(struct curl_llist *, struct curl_llist_element *,
- struct curl_llist *, struct curl_llist_element *);
-
#endif /* HEADER_CURL_LLIST_H */