This commit is contained in:
Tanguy MAZE
2019-03-19 14:47:33 +01:00
parent daeae8bb0f
commit 071672f7c1
2 changed files with 13 additions and 5 deletions

View File

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