view src/gnutls-test.c @ 3712:591f136e765b

stable-octave: add winbelloff patch * src/stable-octave-2-winbelloff.patch: new patch. * dist-files.mk: add stable-octave-2-winbelloff.patch.
author John Donoghue <john.donoghue@ieee.org>
date Mon, 15 Sep 2014 19:42:16 -0400
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;
}