diff options
author | Denys Vlasenko | 2009-10-19 16:07:28 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-10-19 16:07:28 +0200 |
commit | 36df04837ad54a4eb559e5c69a81aeeb4d981a72 (patch) | |
tree | 3685f248b18cbab68ad7a8dd5625932a2adab361 /include/libbb.h | |
parent | 3b3ccdc5bc530e824a55ebc8d57c34f0ca6a30c9 (diff) | |
download | busybox-36df04837ad54a4eb559e5c69a81aeeb4d981a72.zip busybox-36df04837ad54a4eb559e5c69a81aeeb4d981a72.tar.gz |
randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 6e629d1..97dbe86 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) |