summary refs log tree commit diff
path: root/impl.c
diff options
context:
space:
mode:
authorWormHeamer2025-03-10 15:19:44 -0400
committerWormHeamer2025-03-10 15:19:44 -0400
commit9ab6a07efd2b89b01020470c17b3b9341f391faf (patch)
treea7efa929f42438fe7110d3af1ecd4e049ddb80c5 /impl.c
parentec6c4cdbc7208b3e0d72278615205aee5068350a (diff)
move *_IMPL to a separate compilation unit
Diffstat (limited to 'impl.c')
-rw-r--r--impl.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/impl.c b/impl.c
new file mode 100644
index 0000000..8226629
--- /dev/null
+++ b/impl.c
@@ -0,0 +1,7 @@
+#define STR_IMPL
+#define ARENA_IMPL
+#define ARGS_IMPL
+
+#include "str.h"
+#include "arena.h"
+#include "args.h"