summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_putstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/src/ft_putstr.c')
-rw-r--r--libft/src/ft_putstr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libft/src/ft_putstr.c b/libft/src/ft_putstr.c
index 5cd7a6d..d4b0669 100644
--- a/libft/src/ft_putstr.c
+++ b/libft/src/ft_putstr.c
@@ -13,8 +13,7 @@
#include <libft.h>
#include <unistd.h>
-int
- ft_putstr(const char *s)
+int ft_putstr(const char *s)
{
return (write(1, s, ft_strlen(s)));
}