diff options
Diffstat (limited to 'libbb/llist_add_to.c')
-rw-r--r-- | libbb/llist_add_to.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/libbb/llist_add_to.c b/libbb/llist_add_to.c deleted file mode 100644 index 61e53f0..0000000 --- a/libbb/llist_add_to.c +++ /dev/null @@ -1,15 +0,0 @@ -#include <stdlib.h> -#include <string.h> -#include "unarchive.h" -#include "libbb.h" - -extern llist_t *llist_add_to(llist_t *old_head, char *new_item) -{ - llist_t *new_head; - - new_head = xmalloc(sizeof(llist_t)); - new_head->data = new_item; - new_head->link = old_head; - - return(new_head); -} |