This commit is contained in:
whaffman 2025-03-19 15:40:01 +01:00
parent 964a1cec57
commit 18069053ee
2 changed files with 4 additions and 5 deletions

View File

@ -6,7 +6,7 @@
/* By: marvin <marvin@student.42.fr> +#+ */
/* +#+ */
/* Created: 2025/02/04 16:13:13 by whaffman #+# #+# */
/* Updated: 2025/03/19 14:46:36 by whaffman ######## odam.nl */
/* Updated: 2025/03/19 15:39:44 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
@ -33,7 +33,7 @@
# include "debug.h"
# include "utils.h"
extern int g_signum;
extern int g_signum;
# define TRUE 1
# define FALSE 0

View File

@ -6,13 +6,13 @@
/* By: qmennen <qmennen@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/02/04 16:19:22 by whaffman #+# #+# */
/* Updated: 2025/03/19 14:58:06 by whaffman ######## odam.nl */
/* Updated: 2025/03/19 15:38:56 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#include "minishell.h"
int g_signum = 0;
int g_signum = 0;
static void main_loop(t_minishell *msh)
{
@ -39,7 +39,6 @@ static void main_loop(t_minishell *msh)
ft_lstiter(msh->tokens, token_print);
msh->commands = parser_get_commands(msh);
executor_execute_pipeline(msh);
free_minishell_line(msh);
}
}