aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2005-10-04 13:39:06 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2005-10-04 13:39:06 +0000
commit5209e18ba72fa6718fdda7d91788f9b11e352c60 (patch)
tree4ae5b2aa3b829bc9f191e5bd87b70b396809b103
parent5d3a0e8ed3c7fcb43c9298d43868672ae51a4456 (diff)
downloadbusybox-w32-5209e18ba72fa6718fdda7d91788f9b11e352c60.tar.gz
busybox-w32-5209e18ba72fa6718fdda7d91788f9b11e352c60.tar.bz2
busybox-w32-5209e18ba72fa6718fdda7d91788f9b11e352c60.zip
- add prototype for llist_add_to_end to libbb.h
-rw-r--r--include/libbb.h1
1 files changed, 1 insertions, 0 deletions
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 {
459 struct llist_s *link; 459 struct llist_s *link;
460} llist_t; 460} llist_t;
461extern llist_t *llist_add_to(llist_t *old_head, char *new_item); 461extern llist_t *llist_add_to(llist_t *old_head, char *new_item);
462extern llist_t *llist_add_to_end(llist_t *list_head, char *data);
462 463
463extern void print_login_issue(const char *issue_file, const char *tty); 464extern void print_login_issue(const char *issue_file, const char *tty);
464extern void print_login_prompt(void); 465extern void print_login_prompt(void);