fix: Removing debug prints.

This commit is contained in:
2025-06-26 09:36:36 +02:00
parent 5c08d33f22
commit 3f5cbdd276
2 changed files with 0 additions and 5 deletions

View File

@@ -16,13 +16,10 @@ void set_ll_free_all(struct SETBlockMeta *head)
{
while (head)
{
printf("Some free.\n");
void *block_start = head;
head = head->next;
free(block_start);
}
printf("Some free.\n");
}
struct SETBlockMeta *set_ll_free_one(struct SETBlockMeta *head, void *address)

View File

@@ -52,8 +52,6 @@ void *set_malloc(size_t n)
meta->next = NULL;
meta->prev = NULL;
fprintf(stdout, "%s\n", "Some malloc");
if (block_meta_head == NULL)
{
meta->end = meta;