From 68acf428a2b405b47d6fdcbb1a52683f3bb41a42 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Mon, 3 Mar 2025 18:26:00 +0000 Subject: [PATCH] fix(userspace/libc): disable debug info in memory allocation functions Signed-off-by: EnderIce2 --- Userspace/libc/src/mem/liballoc_1_1.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Userspace/libc/src/mem/liballoc_1_1.c b/Userspace/libc/src/mem/liballoc_1_1.c index d92529c9..3a7b010b 100644 --- a/Userspace/libc/src/mem/liballoc_1_1.c +++ b/Userspace/libc/src/mem/liballoc_1_1.c @@ -1,5 +1,9 @@ #include "liballoc_1_1.h" +/* comment these to print debug info */ +#undef DEBUG +#undef INFO + /** Durand's Amazing Super Duper Memory functions. */ #define VERSION "1.1"