From: Bernhard Reutner-Fischer Date: Tue, 4 Oct 2005 13:39:06 +0000 (-0000) Subject: - add prototype for llist_add_to_end to libbb.h X-Git-Tag: 1_1_0~605 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5209e18ba72fa6718fdda7d91788f9b11e352c60;p=oweals%2Fbusybox.git - add prototype for llist_add_to_end to libbb.h --- diff --git a/include/libbb.h b/include/libbb.h index 02bdb5861..484f4e07b 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -459,6 +459,7 @@ typedef struct llist_s { struct llist_s *link; } llist_t; extern llist_t *llist_add_to(llist_t *old_head, char *new_item); +extern llist_t *llist_add_to_end(llist_t *list_head, char *data); extern void print_login_issue(const char *issue_file, const char *tty); extern void print_login_prompt(void);