summaryrefslogtreecommitdiffstats
path: root/src/gnutls-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gnutls-test.c')
-rw-r--r--src/gnutls-test.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gnutls-test.c b/src/gnutls-test.c
new file mode 100644
index 0000000..06ebb39
--- /dev/null
+++ b/src/gnutls-test.c
@@ -0,0 +1,16 @@
+/* This file is part of mingw-cross-env. */
+/* See doc/index.html for further information. */
+
+#include <gnutls/gnutls.h>
+
+int main(int argc, char *argv[])
+{
+ (void)argc;
+ (void)argv;
+
+ gnutls_global_init ();
+
+ gnutls_global_deinit ();
+
+ return 0;
+}