Skip to content

Commit

Permalink
#ifdef 0'ed Curl_llist_insert_prev and Curl_llist_remove_next, as the…
Browse files Browse the repository at this point in the history
…y are

not used by any code in libcurl!
  • Loading branch information
bagder committed Sep 11, 2003
1 parent cc497fd commit 6fde147
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/llist.c
Expand Up @@ -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)
{
Expand All @@ -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)
Expand Down Expand Up @@ -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)
{
Expand All @@ -155,6 +158,7 @@ Curl_llist_count(curl_llist *list)
{
return list->size;
}
#endif

void
Curl_llist_destroy(curl_llist *list, void *user)
Expand Down

0 comments on commit 6fde147

Please sign in to comment.