From 9a915b797a80c2a776027b1fcc37f1e7b8ab1b24 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 29 Sep 2020 19:50:20 +0200 Subject: Update --- libft/src/ft_strjoin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libft/src/ft_strjoin.c') diff --git a/libft/src/ft_strjoin.c b/libft/src/ft_strjoin.c index 90650d0..5ecc98a 100644 --- a/libft/src/ft_strjoin.c +++ b/libft/src/ft_strjoin.c @@ -11,9 +11,9 @@ /* ************************************************************************** */ #include +#include -char - *ft_strjoin(const char *s1, const char *s2) +char *ft_strjoin(const char *s1, const char *s2) { char *str; size_t i; -- cgit v1.2.3