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