aboutsummaryrefslogtreecommitdiff
path: root/src/vec.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vec.c')
-rw-r--r--src/vec.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/vec.c b/src/vec.c
new file mode 100644
index 0000000..318d328
--- /dev/null
+++ b/src/vec.c
@@ -0,0 +1,9 @@
+#include "vec.h"
+
+#include <string.h>
+
+VECTOR_IMPL(Char);
+VECTOR_IMPL(Int);
+VECTOR_IMPL(Long);
+VECTOR_IMPL(Float);
+VECTOR_IMPL(Double);