summaryrefslogtreecommitdiffstats
path: root/src/ft_f_chdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ft_f_chdir.c')
-rw-r--r--src/ft_f_chdir.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/ft_f_chdir.c b/src/ft_f_chdir.c
deleted file mode 100644
index 1386626..0000000
--- a/src/ft_f_chdir.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* ft_f_chdir.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
-/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
-/* */
-/* ************************************************************************** */
-
-#include <libft.h>
-#include <string.h>
-#include <errno.h>
-#include <unistd.h>
-
-#include "ft_s_struct.h"
-
-void
- ft_fail_chd(const char concern[],
- const char path[],
- t_msh *msh)
-{
- ft_dprintf(STDERR_FILENO, "%s: %s: %s: %s\n",
- msh->shname, concern, path, strerror(errno));
-}