test whole program

This commit is contained in:
2025-08-11 13:33:17 +01:00
parent 83fda95e34
commit 8cc1855a0d

View File

@@ -266,7 +266,7 @@ void *malloc(size_t sz)
sz = __builtin_align_up(sz, _Alignof(max_align_t));
// printf("%d \n", sz);
// printf("%d Malloc counter\n", MallocCounter);
printf("%d Malloc counter\n", MallocCounter);
MallocCounter -= sz;
void *ptrLink = &ptr[MallocCounter];