aboutsummaryrefslogtreecommitdiff
path: root/tests/cmake/crypto.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cmake/crypto.c')
-rw-r--r--tests/cmake/crypto.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/cmake/crypto.c b/tests/cmake/crypto.c
new file mode 100644
index 0000000..3838180
--- /dev/null
+++ b/tests/cmake/crypto.c
@@ -0,0 +1,7 @@
1#include <openssl/crypto.h>
2
3int main(void) {
4 OPENSSL_init_crypto(0, NULL);
5 OPENSSL_cleanup();
6 return 0;
7}