diff options
Diffstat (limited to 'libft/src/ft_putendl_fd.c')
-rw-r--r-- | libft/src/ft_putendl_fd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libft/src/ft_putendl_fd.c b/libft/src/ft_putendl_fd.c index c8c6401..ab847f9 100644 --- a/libft/src/ft_putendl_fd.c +++ b/libft/src/ft_putendl_fd.c @@ -12,8 +12,7 @@ #include <libft.h> -void - ft_putendl_fd(char *s, int fd) +void ft_putendl_fd(char *s, int fd) { ft_putstr_fd(s, fd); ft_putchar_fd('\n', fd); |