summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_bzero.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/src/ft_bzero.c')
-rw-r--r--libft/src/ft_bzero.c4
1 files changed, 1 insertions, 3 deletions
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 <libft.h>
#include <stddef.h>
void
ft_bzero(void *s, size_t n)
{
- if (!s)
- return ;
ft_memset(s, 0, n);
}