From fc29371a10bf6cfd93c4e9ccfe9193c1311efc98 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Fri, 27 Dec 2019 17:24:35 +0100 Subject: updated libft, better Makefile and .gitignore --- libft/src/ft_bzero.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'libft/src/ft_bzero.c') diff --git a/libft/src/ft_bzero.c b/libft/src/ft_bzero.c index 05ff6b7..1f09fbe 100644 --- a/libft/src/ft_bzero.c +++ b/libft/src/ft_bzero.c @@ -11,13 +11,11 @@ /* / */ /* ************************************************************************** */ -#include "libft.h" +#include #include void ft_bzero(void *s, size_t n) { - if (!s) - return ; ft_memset(s, 0, n); } -- cgit v1.2.3