diff options
author | WormHeamer | 2025-03-10 15:19:44 -0400 |
---|---|---|
committer | WormHeamer | 2025-03-10 15:19:44 -0400 |
commit | 9ab6a07efd2b89b01020470c17b3b9341f391faf (patch) | |
tree | a7efa929f42438fe7110d3af1ecd4e049ddb80c5 /main.c | |
parent | ec6c4cdbc7208b3e0d72278615205aee5068350a (diff) |
move *_IMPL to a separate compilation unit
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
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];\ |