diff options
Diffstat (limited to 'src/ft_exec.c')
-rw-r--r-- | src/ft_exec.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ft_exec.c b/src/ft_exec.c new file mode 100644 index 0000000..0c950e4 --- /dev/null +++ b/src/ft_exec.c @@ -0,0 +1,10 @@ +#include <libft.h> +#include <minishell.h> +#include <uinstd.h> + +int +ft_exec(char **app) +{ + (void)app; + return (0); +} |