diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-09-11 22:13:37 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-09-11 22:13:37 +0000 |
commit | 6fde14727321fd5903cc0c951c687164e7182a42 (patch) | |
tree | 0f41be8deb28c56fdc3b6cf4e0955a7ddfa5767e /lib | |
parent | cc497fd153bf8301ff62ec846c14a68f49798cb4 (diff) |
#ifdef 0'ed Curl_llist_insert_prev and Curl_llist_remove_next, as they are
not used by any code in libcurl!
Diffstat (limited to 'lib')
-rw-r--r-- | lib/llist.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/llist.c b/lib/llist.c index 57c15154c..56d15950e 100644 --- a/lib/llist.c +++ b/lib/llist.c @@ -83,6 +83,7 @@ Curl_llist_insert_next(curl_llist *list, curl_llist_element *e, const void *p) return 1; } +#if 0 int Curl_llist_insert_prev(curl_llist *list, curl_llist_element *e, const void *p) { @@ -109,6 +110,7 @@ Curl_llist_insert_prev(curl_llist *list, curl_llist_element *e, const void *p) return 1; } +#endif int Curl_llist_remove(curl_llist *list, curl_llist_element *e, void *user) @@ -138,6 +140,7 @@ Curl_llist_remove(curl_llist *list, curl_llist_element *e, void *user) return 1; } +#if 0 int Curl_llist_remove_next(curl_llist *list, curl_llist_element *e, void *user) { @@ -155,6 +158,7 @@ Curl_llist_count(curl_llist *list) { return list->size; } +#endif void Curl_llist_destroy(curl_llist *list, void *user) |