view src/gnutls-test.c @ 3404:c43915b7e891

Add octave forge quaternion package * Makefile.am: add quaternion to OCTAVE_FORGE_PACKAGES. * build_packages.m: add quaternion package to install. * dist-files.mk: add of-quaternion.mk. * index.html: add of-quaternion-package. * src/quaternion.mk: New file.
author John Donoghue <john.donoghue@ieee.org>
date Sun, 05 Jan 2014 14:44:37 -0500
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;
}