diff --git a/f.c b/f.c index 64d58e5..18c3382 100644 --- a/f.c +++ b/f.c @@ -6,7 +6,7 @@ size_t free_counter; void * TEST_MALLOC(size_t size) { - printf("malloc'ed %lu\n", size); + //printf("malloc'ed %lu\n", size); malloc_counter += size; return malloc(size); @@ -15,7 +15,7 @@ void * TEST_MALLOC(size_t size) void TEST_FREE(void *p) { size_t s = malloc_usable_size(p); - printf("freed %lu\n", s); + //printf("freed %lu\n", s); free_counter += s;