From ac8193eb8bc03b92dbc876a62c33297a07eac5e0 Mon Sep 17 00:00:00 2001 From: Ole Morud Date: Sun, 4 Jun 2023 13:17:18 +0200 Subject: [PATCH] Remove print statement --- src/arena.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/arena.c b/src/arena.c index b304076..0a6a67c 100644 --- a/src/arena.c +++ b/src/arena.c @@ -7,8 +7,6 @@ #include #include -#include - // (sizeof(intptr_t) isn't guaranteed to be the machine word size but on most // compilers it is) #define WORD_SIZE (sizeof(intptr_t)) @@ -52,7 +50,6 @@ void* arena_alloc(arena_t* a, size_t len) { // align len to machine word size len = (len + WORD_SIZE - 1) & ~(WORD_SIZE - 1); - fprintf(stderr, "allocating %zu bytes\n", len); a->prev = a->next; a->next += len;