aboutsummaryrefslogtreecommitdiff
path: root/testmain.c
diff options
context:
space:
mode:
authorJean-Philippe Aumasson <jeanphilippe.aumasson@gmail.com>2019-09-22 06:15:18 -0400
committerGitHub <noreply@github.com>2019-09-22 06:15:18 -0400
commit566f3f9c0dc72d0fc49ca0cb1dedf90e75c226e2 (patch)
treeab877193da84b7a00dc6d363dccbbcb09065372d /testmain.c
parentMerge pull request #21 from altendky/full_siphash_format_specifiers (diff)
parentSeparate test function and main() (diff)
downloadsiphash-566f3f9c0dc72d0fc49ca0cb1dedf90e75c226e2.tar.gz
siphash-566f3f9c0dc72d0fc49ca0cb1dedf90e75c226e2.tar.xz
Merge pull request #24 from altendky/separate_test_and_main
Separate test function and main()
Diffstat (limited to 'testmain.c')
-rw-r--r--testmain.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/testmain.c b/testmain.c
new file mode 100644
index 0000000..bb9e024
--- /dev/null
+++ b/testmain.c
@@ -0,0 +1,5 @@
+int siphash_test();
+
+int main(void) {
+ return siphash_test();
+}