aboutsummaryrefslogtreecommitdiff
path: root/src/lst/ft_lstdelone.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lst/ft_lstdelone.c')
-rw-r--r--src/lst/ft_lstdelone.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lst/ft_lstdelone.c b/src/lst/ft_lstdelone.c
index 30cec69..63dcc35 100644
--- a/src/lst/ft_lstdelone.c
+++ b/src/lst/ft_lstdelone.c
@@ -11,8 +11,9 @@
/* ************************************************************************** */
#include "libft.h"
+#include "libft_lst.h"
-void ft_lstdelone(t_list *lst, void (*del)(void *))
+void ft_lstdelone(t_ftlst *lst, void (*del)(void *))
{
if (lst == NULL)
return ;