diff options
Diffstat (limited to 'libft/src/ft_itoa.c')
-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 e10fbab..255d0a8 100644 --- a/libft/src/ft_itoa.c +++ b/libft/src/ft_itoa.c @@ -14,8 +14,7 @@ #include <inttypes.h> #include <stdlib.h> -char - *ft_itoa(long n) +char *ft_itoa(long n) { char *s; long nb; |