diff options
Diffstat (limited to 'libft/src/ft_putendl.c')
-rw-r--r-- | libft/src/ft_putendl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libft/src/ft_putendl.c b/libft/src/ft_putendl.c index 8ffbd60..c694cf3 100644 --- a/libft/src/ft_putendl.c +++ b/libft/src/ft_putendl.c @@ -13,8 +13,7 @@ #include <libft.h> #include <unistd.h> -int - ft_putendl(const char *s) +int ft_putendl(const char *s) { return (write(1, s, ft_strlen(s)) + ft_putchar('\n')); } |