diff options
Diffstat (limited to '')
-rw-r--r-- | libft/src/ft_itoa.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libft/src/ft_itoa.c b/libft/src/ft_itoa.c index 2c0c14e..a243719 100644 --- a/libft/src/ft_itoa.c +++ b/libft/src/ft_itoa.c @@ -11,14 +11,13 @@ /* ************************************************************************** */ #include <libft.h> -#include <inttypes.h> #include <stdlib.h> char *ft_itoa(long n) { char *s; long nb; - uint8_t i; + unsigned char i; i = ft_intlen(n) - 1; if ((s = (char*)malloc((i + 2) * sizeof(char))) == NULL) |