diff options
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 66781da4f..f4fc10325 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1925,9 +1925,9 @@ unsigned size_from_HISTFILESIZE(const char *hp) FAST_FUNC; | |||
1925 | # define MAX_HISTORY 0 | 1925 | # define MAX_HISTORY 0 |
1926 | # endif | 1926 | # endif |
1927 | typedef struct exe_state { | 1927 | typedef struct exe_state { |
1928 | int e_type; /* type of tab completion: builtin, alias, function */ | ||
1929 | int e_index; /* index of current table entry or hash bucket */ | 1928 | int e_index; /* index of current table entry or hash bucket */ |
1930 | # if ENABLE_SHELL_ASH || (ENABLE_SHELL_HUSH && ENABLE_HUSH_FUNCTIONS) | 1929 | # if ENABLE_SHELL_ASH || (ENABLE_SHELL_HUSH && ENABLE_HUSH_FUNCTIONS) |
1930 | int e_type; /* type of tab completion: builtin, alias, function */ | ||
1931 | void *e_ptr; /* current position in linked list */ | 1931 | void *e_ptr; /* current position in linked list */ |
1932 | # endif | 1932 | # endif |
1933 | } exe_state; | 1933 | } exe_state; |