summaryrefslogtreecommitdiff
path: root/memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'memory.c')
-rw-r--r--memory.c1
1 files changed, 0 insertions, 1 deletions
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];