From f92d78184cb8ff31648a623914f714baa27ee2e7 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 29 Sep 2020 19:29:59 +0200 Subject: Normized --- libft/src/ft_putchar.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libft/src/ft_putchar.c') diff --git a/libft/src/ft_putchar.c b/libft/src/ft_putchar.c index b48bd32..3a9923e 100644 --- a/libft/src/ft_putchar.c +++ b/libft/src/ft_putchar.c @@ -12,8 +12,7 @@ #include -int - ft_putchar(int c) +int ft_putchar(int c) { return (write(1, &c, 1)); } -- cgit v1.2.3