This commit is contained in:
Tanguy MAZE 2019-03-19 14:59:14 +01:00
parent 071672f7c1
commit 3a868c0602

View File

@ -6,7 +6,7 @@
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */ /* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/07 22:37:44 by tmaze #+# #+# */ /* Created: 2018/04/07 22:37:44 by tmaze #+# #+# */
/* Updated: 2019/03/19 14:33:02 by tmaze ### ########.fr */ /* Updated: 2019/03/19 14:50:20 by tmaze ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -16,5 +16,5 @@ void ft_putendl(char const *s)
{ {
if (s != NULL) if (s != NULL)
ft_putstr(s); ft_putstr(s);
write(0, "\n", 1); ft_putchar('\n');
} }