diff options
author | Denis Vlasenko | 2006-10-25 00:33:44 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-25 00:33:44 +0000 |
commit | c8400a216206a848f6c4b83b668df37f6fb546ee (patch) | |
tree | 4aa28c4440e6c150a31188f1910b6a945176c27c /include/libbb.h | |
parent | 44c7917cab43713a034622bfb6e464de92cf8f1c (diff) | |
download | busybox-c8400a216206a848f6c4b83b668df37f6fb546ee.zip busybox-c8400a216206a848f6c4b83b668df37f6fb546ee.tar.gz |
wget: wget $'-\207' ... should not be allowed to work. ever. :)
So fix wget & getopt32. Also fix multiple --header options
order: add and use rev_llist.
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 3fa4972..7b8327f 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -166,7 +166,7 @@ extern void llist_add_to(llist_t **old_head, void *data); extern void llist_add_to_end(llist_t **list_head, void *data); extern void *llist_pop(llist_t **elm); extern void llist_free(llist_t *elm, void (*freeit)(void *data)); - +extern llist_t* rev_llist(llist_t *list); enum { LOGMODE_NONE = 0, |