From 8d7f65c1c04f7124f1a34062be377fdbe721c46a Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Sun, 2 Feb 2020 17:05:54 +0100 Subject: Correct ft_memdel --- libft/inc/libft.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libft/inc') diff --git a/libft/inc/libft.h b/libft/inc/libft.h index 58dbbc2..4799121 100644 --- a/libft/inc/libft.h +++ b/libft/inc/libft.h @@ -68,7 +68,7 @@ void ft_lstiter(t_list *lst, void (*f)(void *)); void ft_kernel_panic(void); void ft_putnbr(long nb); void ft_putnbr_base(long nb, char *base); -void ft_memdel(void *ptr); +void ft_memdel(void **ptr); void *ft_memset(void *b, int c, size_t len); void *ft_memcpy(void *dst, const void *src, size_t n); void *ft_memccpy(void *dst, const void *src, -- cgit v1.2.3