From 2e761bdb8badecdbda2925a056a6d5aa3e3cac83 Mon Sep 17 00:00:00 2001 From: quou Date: Sat, 1 Jun 2024 12:26:51 +1000 Subject: Remove a debug print. --- memory.c | 1 - 1 file changed, 1 deletion(-) diff --git a/memory.c b/memory.c index 228240a..9dd99c2 100644 --- a/memory.c +++ b/memory.c @@ -76,7 +76,6 @@ static void* heap_alloc_impla(Heap* h, int size) { p = 0; m = sizeof *header; h->usage += as; - printf("%d\n", h->usage); for (i = 0; i < h->blocks; i++) { header = (int*)(h->buffer + p); s = header[0]; -- cgit v1.2.3-54-g00ecf