aboutsummaryrefslogtreecommitdiff
path: root/printer.c
diff options
context:
space:
mode:
Diffstat (limited to 'printer.c')
-rw-r--r--printer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/printer.c b/printer.c
index 1484165..787cd0a 100644
--- a/printer.c
+++ b/printer.c
@@ -1,5 +1,5 @@
#include <unistd.h>
-#include "ft_printf.h"
+#include "header.h"
void ft_putchar(char c)
{
@@ -27,7 +27,7 @@ void ft_putnbr(int n)
ft_putchar(p_n % 10 + '0');
}
-void ft_putxnbr(unsigned int n, char *hex_symbols)
+void ft_putxnbr(long unsigned int n, char *hex_symbols)
{
if (n > 15)
ft_putxnbr(n / 16, hex_symbols);