From 11b258841f4a15c514c49af7d378b51cd6a8ab79 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 23 Jun 2020 09:09:17 +0200 Subject: Fixing builtin which needed to not be run in a child process, Added exit builtin --- include/eval.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/eval.h') diff --git a/include/eval.h b/include/eval.h index 97c1ce8..e300644 100644 --- a/include/eval.h +++ b/include/eval.h @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/01 17:05:30 by charles #+# #+# */ -/* Updated: 2020/06/19 12:18:42 by charles ### ########.fr */ +/* Updated: 2020/06/23 08:33:02 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -35,7 +35,7 @@ typedef struct char *exec_path; char **argv; t_env env; - t_builtin_func builtin; + t_builtin_entry *builtin; } t_fork_param_cmd; # define MS_NO_FD -2 -- cgit