diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_s_init.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ft_s_init.c b/src/ft_s_init.c index 63856c2..6c20c10 100644 --- a/src/ft_s_init.c +++ b/src/ft_s_init.c @@ -11,6 +11,8 @@ /* ************************************************************************** */ #include <libft.h> +#include <unistd.h> + #include "ft_d_define.h" #include "ft_m_funptr.h" #include "ft_s_init.h" @@ -30,6 +32,8 @@ t_msh return (NULL); } ft_strlcpy(msh->ps_one, FT_PS_ONE, ft_strlen(FT_PS_ONE) + 1); + msh->cwd = NULL; + msh->cwd = getcwd(NULL, 0); msh->envp = envp; msh->ret = 0; ft_init_buptr(msh); |