X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=include%2Fwimlib%2Flist.h;h=d556a56c6a142ddfaf2a732db3e4a4cb2912913b;hp=f59e113c994c52d217f3c9807af4b20c474446ec;hb=a941f876cf6795a1e0bc634991712747ca5ddeda;hpb=31dcd352caa17f61fe1307738c2a24ed83f1d281 diff --git a/include/wimlib/list.h b/include/wimlib/list.h index f59e113c..d556a56c 100644 --- a/include/wimlib/list.h +++ b/include/wimlib/list.h @@ -140,24 +140,6 @@ list_splice(const struct list_head *list, struct list_head *head) __list_splice(list, head, head->next); } -/* Move the entire list @old to the list @new, overwriting it. */ -static inline void -list_transfer(struct list_head *old, struct list_head *new) -{ - struct list_head *prev, *next; - - if (list_empty(old)) { - INIT_LIST_HEAD(new); - } else { - prev = old->prev; - next = old->next; - new->next = next; - new->prev = prev; - prev->next = new; - next->prev = new; - } -} - /** * list_move - delete from one list and add as another's head * @list: the entry to move