From ecfbc1f47ff85b71365f2f25bf07291037a5dcc6 Mon Sep 17 00:00:00 2001 From: BanceDev Date: Wed, 18 Sep 2024 14:57:58 -0400 Subject: fixed && chaining for builtins --- src/lush.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lush.h') diff --git a/src/lush.h b/src/lush.h index 564dd4b..291a8dd 100644 --- a/src/lush.h +++ b/src/lush.h @@ -40,7 +40,7 @@ char ***lush_split_args(char **commands, int *status); int lush_execute_command(char **args, int input_fd, int output_fd); int lush_execute_pipeline(char ***commands, int num_commands); -int lush_execute_chain(char ***commands, int num_commands); +int lush_execute_chain(lua_State *L, char ***commands, int num_commands); void lush_format_prompt(const char *prompt_format); -- cgit v1.2.3-59-g8ed1b