summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_strjoin.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libft/src/ft_strjoin.c4
1 files changed, 2 insertions, 2 deletions
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 <libft.h>
+#include <stddef.h>
-char
- *ft_strjoin(const char *s1, const char *s2)
+char *ft_strjoin(const char *s1, const char *s2)
{
char *str;
size_t i;