diff options
Diffstat (limited to 'libft/src/ft_split.c')
-rw-r--r-- | libft/src/ft_split.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libft/src/ft_split.c b/libft/src/ft_split.c index a5e1189..69aeefe 100644 --- a/libft/src/ft_split.c +++ b/libft/src/ft_split.c @@ -13,13 +13,12 @@ #include <libft.h> #include <stddef.h> #include <stdlib.h> -#include <inttypes.h> static size_t ft_count_words(const char *s, char c) { size_t i; size_t count; - uint8_t ibool; + unsigned char ibool; i = 0; count = 0; |