aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-10-19 16:07:28 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-10-19 16:07:28 +0200
commit36df04837ad54a4eb559e5c69a81aeeb4d981a72 (patch)
tree3685f248b18cbab68ad7a8dd5625932a2adab361 /include
parent3b3ccdc5bc530e824a55ebc8d57c34f0ca6a30c9 (diff)
downloadbusybox-36df04837ad54a4eb559e5c69a81aeeb4d981a72.tar.gz
randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 6e629d187..97dbe8687 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1271,6 +1271,7 @@ line_input_t *new_line_input_t(int flags) FAST_FUNC;
*/
int read_line_input(const char* prompt, char* command, int maxsize, line_input_t *state) FAST_FUNC;
#else
+#define MAX_HISTORY 0
int read_line_input(const char* prompt, char* command, int maxsize) FAST_FUNC;
#define read_line_input(prompt, command, maxsize, state) \
read_line_input(prompt, command, maxsize)