From 83a8100388786120133cf622b1e916d35e45fff4 Mon Sep 17 00:00:00 2001 From: laentropia Date: Tue, 26 May 2026 12:46:06 -0600 Subject: [PATCH] Allocator interface better --- src/main.c | 2 -- test/test_allocator.c | 1 - xmake.lua | 2 +- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main.c b/src/main.c index e0b3275..0b248e4 100644 --- a/src/main.c +++ b/src/main.c @@ -1,5 +1,3 @@ -#include "allocator.h" -#include #include int main(void) { return EXIT_SUCCESS; } diff --git a/test/test_allocator.c b/test/test_allocator.c index 9d49529..3395104 100644 --- a/test/test_allocator.c +++ b/test/test_allocator.c @@ -1,4 +1,3 @@ -#include "allocator.h" #include #include #include diff --git a/xmake.lua b/xmake.lua index 6d1ea17..0364ca4 100644 --- a/xmake.lua +++ b/xmake.lua @@ -18,7 +18,7 @@ set_showmenu(true) option_end() option("example") -set_default(true) +set_default(false) set_showmenu(true) option_end()