diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-06 11:12:38 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-06 11:12:38 +0100 |
commit | a68a87cd60c2cb0c0e9170317901d8f70923926a (patch) | |
tree | fa0e35426aa8be3eec1d8ece841d6c159b122cf0 /libbb | |
parent | a6f84e1a35b5d9d15bfb976f76bb5dc340bc995c (diff) | |
download | busybox-a68a87cd60c2cb0c0e9170317901d8f70923926a.tar.gz |
bc: unbreak FEATURE_CLEAN_UP build
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/lineedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/lineedit.c b/libbb/lineedit.c index b1e971f88..b6fcd7af0 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c @@ -1382,7 +1382,7 @@ void FAST_FUNC show_history(const line_input_t *st) * than configured MAX_HISTORY lines. */ -static void free_line_input_t(line_input_t *n) +void FAST_FUNC free_line_input_t(line_input_t *n) { int i = n->cnt_history; while (i > 0) |