From c5aae008dee36276154882d8fd56c3bdeb473474 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 27 Oct 2020 19:59:20 +0100 Subject: Now norme --- libft/src/ft_putnbr_base.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libft/src/ft_putnbr_base.c') diff --git a/libft/src/ft_putnbr_base.c b/libft/src/ft_putnbr_base.c index 3468b6b..86c0539 100644 --- a/libft/src/ft_putnbr_base.c +++ b/libft/src/ft_putnbr_base.c @@ -11,12 +11,11 @@ /* ************************************************************************** */ #include -#include void ft_putnbr_base(long nb, char *base) { long i; - uint8_t size; + unsigned char size; i = nb; size = ft_strlen(base); -- cgit v1.2.3