diff options
Diffstat (limited to 'src/ft_m_funptr.c')
-rw-r--r-- | src/ft_m_funptr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft_m_funptr.c b/src/ft_m_funptr.c index de6acd3..0a48d52 100644 --- a/src/ft_m_funptr.c +++ b/src/ft_m_funptr.c @@ -12,6 +12,7 @@ #include <libft.h> #include <stdlib.h> + #include "ft_d_enum.h" #include "ft_b_builtins.h" #include "ft_f_fail.h" @@ -28,8 +29,7 @@ void msh->bu_ptr[4] = ft_b_unset; msh->bu_ptr[5] = ft_b_env; msh->bu_ptr[6] = ft_b_exit; - /* TODO: type builtin */ - /* msh->bu_ptr[7] = ft_b_type; */ + msh->bu_ptr[7] = ft_b_type; if (!(msh->bu_ref = ft_split(FT_BUILTINS, '|'))) { ft_fail_alloc(); |