diff options
Diffstat (limited to '')
-rw-r--r-- | libft/src/ft_bzero.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libft/src/ft_bzero.c b/libft/src/ft_bzero.c index bec9e50..1d9ec9f 100644 --- a/libft/src/ft_bzero.c +++ b/libft/src/ft_bzero.c @@ -13,8 +13,7 @@ #include <libft.h> #include <stddef.h> -void - ft_bzero(void *s, size_t n) +void ft_bzero(void *s, size_t n) { ft_memset(s, 0, n); } |