From bd8f652de51395fb26659f7a634e55bd46917b2e Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 17 Jul 2020 14:09:10 +0200 Subject: Fixing exit error message and overflow detection --- include/minishell.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/minishell.h b/include/minishell.h index aebfbf2..3406041 100644 --- a/include/minishell.h +++ b/include/minishell.h @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/26 15:33:51 by cacharle #+# #+# */ -/* Updated: 2020/07/16 09:17:45 by charles ### ########.fr */ +/* Updated: 2020/07/17 11:17:16 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -89,6 +89,7 @@ typedef struct { char *name; t_builtin_func func; + bool forked; } t_builtin_entry; t_builtin_entry *builtin_search_func(char *name); -- cgit