view src/gnutls-test.c @ 4461:cc4433ef0b89

configure: build with Qt 5 by default now * configure.ac: Make ENABLE_QT5=yes the default, specify --disable-qt5 to build with Qt 4.
author Mike Miller <mtmiller@octave.org>
date Thu, 31 Aug 2017 15:53:33 -0700
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See 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;
}