1
All checks were successful
/ build-images (push) Successful in 7s
/ run-tests (push) Successful in 7s

This commit is contained in:
ІО-23 Шмуляр Олег 2026-03-18 18:34:02 +02:00
parent 99d7acc8ef
commit a64d3645ba

4
f.c
View File

@ -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;