diff options
Diffstat (limited to 'libft/src/ft_itoa_s.c')
-rw-r--r-- | libft/src/ft_itoa_s.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libft/src/ft_itoa_s.c b/libft/src/ft_itoa_s.c index a3469f3..98088e3 100644 --- a/libft/src/ft_itoa_s.c +++ b/libft/src/ft_itoa_s.c @@ -11,12 +11,11 @@ /* ************************************************************************** */ #include <libft.h> -#include <inttypes.h> void ft_itoa_s(char str[], long n) { long nb; - uint8_t i; + unsigned char i; i = ft_intlen(n) - 1; if (n == 0) |