aboutsummaryrefslogtreecommitdiffstats
path: root/ft_bzero.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_bzero.c')
-rw-r--r--ft_bzero.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/ft_bzero.c b/ft_bzero.c
deleted file mode 100644
index 10f67bd..0000000
--- a/ft_bzero.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include "libft.h"
-
-void
-ft_bzero (void *s, size_t n)
-{
- ft_memset (s, 0, n);
-}