This commit is contained in:
hugodu69
2020-06-29 23:46:10 +02:00
parent 00e582e8a2
commit 5a3f4ed84b
2 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,8 @@
#include <stdio.h>
int ft_printf(char *string, ...);
int main(void)
{
printf("%s\n", NULL);
ft_printf("%s\n", NULL);
}