aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 1b1e5cab1..94f0e40ec 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -2007,9 +2007,15 @@ typedef struct line_input_t {
2007# if ENABLE_SHELL_ASH || ENABLE_SHELL_HUSH 2007# if ENABLE_SHELL_ASH || ENABLE_SHELL_HUSH
2008 /* function to fetch additional application-specific names to match */ 2008 /* function to fetch additional application-specific names to match */
2009 get_exe_name_t *get_exe_name; 2009 get_exe_name_t *get_exe_name;
2010# endif
2011# endif
2012# if (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT) \
2013 && (ENABLE_SHELL_ASH || ENABLE_SHELL_HUSH)
2010 /* function to fetch value of shell variable */ 2014 /* function to fetch value of shell variable */
2011 sh_get_var_t *sh_get_var; 2015 sh_get_var_t *sh_get_var;
2012# endif 2016# define EDITING_HAS_sh_get_var 1
2017# else
2018# define EDITING_HAS_sh_get_var 0
2013# endif 2019# endif
2014# if MAX_HISTORY 2020# if MAX_HISTORY
2015 int cnt_history; 2021 int cnt_history;