diff options
Diffstat (limited to '')
-rw-r--r-- | libft/src/ft_putchar.c | 3 |
1 files changed, 1 insertions, 2 deletions
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 <unistd.h> -int - ft_putchar(int c) +int ft_putchar(int c) { return (write(1, &c, 1)); } |