summaryrefslogtreecommitdiff
path: root/ft_calloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_calloc.c')
-rw-r--r--ft_calloc.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/ft_calloc.c b/ft_calloc.c
index d52d340..6e7e977 100644
--- a/ft_calloc.c
+++ b/ft_calloc.c
@@ -34,11 +34,3 @@ void *ft_calloc(size_t nmemb, size_t size)
return (ptr);
}
-/*
-#include <stdio.h>
-
-int main(void)
-{
- printf("%p\n", ft_calloc(0, 0));
-}
-*/