diff options
-rw-r--r-- | impl.c | 7 | ||||
-rw-r--r-- | main.c | 2 |
2 files changed, 7 insertions, 2 deletions
@@ -0,0 +1,7 @@ +#define STR_IMPL +#define ARENA_IMPL +#define ARGS_IMPL + +#include "str.h" +#include "arena.h" +#include "args.h" @@ -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];\ |