summaryrefslogtreecommitdiffstats
path: root/src/xxhash-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xxhash-test.c')
-rw-r--r--src/xxhash-test.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/xxhash-test.c b/src/xxhash-test.c
new file mode 100644
index 0000000..e7eca64
--- /dev/null
+++ b/src/xxhash-test.c
@@ -0,0 +1,12 @@
+/*
+ * This file is part of MXE.
+ * See index.html for further information.
+ */
+
+#include <xxhash.h>
+
+int main() {
+ XXH32_state_t* state = XXH32_createState();
+ XXH32_freeState(state);
+ return 0;
+}