aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2023-01-05 08:56:27 +0000
committerRon Yorston <rmy@pobox.com>2023-01-05 08:56:27 +0000
commite5e4a2fec5435192d1672e6db2f335cb5e89f877 (patch)
tree08cb827a40817ea4824bc9336d57eda669c4d4b2 /include
parent4343f3926355f55fc023203c992527fc34bf609e (diff)
parentb1884deb514c35289d37e7bfbf23f770b0bd09b3 (diff)
downloadbusybox-w32-e5e4a2fec5435192d1672e6db2f335cb5e89f877.tar.gz
busybox-w32-e5e4a2fec5435192d1672e6db2f335cb5e89f877.tar.bz2
busybox-w32-e5e4a2fec5435192d1672e6db2f335cb5e89f877.zip
Merge branch 'busybox' into merge
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;