view src/gnutls-test.c @ 2199:d9e4f3b2002a

merge
author Volker Grabsch <vog@notjusthosting.com>
date Mon, 02 Jan 2012 11:29:26 +0100
parents 3a54f0ccdd00
children f653602a0500
line wrap: on
line source

/* 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;
}