mxe/src/gnutls-test.c

19 lines
250 B
C
Raw Normal View History

/*
* This file is part of MXE.
2012-03-29 11:14:15 +01:00
* See index.html for further information.
*/
2011-09-03 15:40:19 +01:00
#include <gnutls/gnutls.h>
int main(int argc, char *argv[])
{
(void)argc;
(void)argv;
gnutls_global_init ();
gnutls_global_deinit ();
return 0;
}