summary refs log tree commit diff
path: root/main.c
diff options
context:
space:
mode:
authorWormHeamer2025-03-10 15:19:44 -0400
committerWormHeamer2025-03-10 15:19:44 -0400
commit9ab6a07efd2b89b01020470c17b3b9341f391faf (patch)
treea7efa929f42438fe7110d3af1ecd4e049ddb80c5 /main.c
parentec6c4cdbc7208b3e0d72278615205aee5068350a (diff)
move *_IMPL to a separate compilation unit
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/main.c b/main.c
index 8336728..553ed06 100644
--- a/main.c
+++ b/main.c
@@ -8,10 +8,8 @@
 #include <errno.h>
 #include <sys/mman.h>
 
-#define ARENA_IMPL
 #include "str.h"
 #include "arena.h"
-#define ARGS_IMPL
 #include "args.h"
 
 #define ARENA(n, sz) Arena n; { static char arena_backarr[sz];\