view src/gta-test.c @ 3989:cdbce8086eaa

of-ocs: new package * Makefile.in: add ocs to OCTAVE_FORGE_PACKAGES * build_packages.m: add ocs-0.1.4.tar.gz to install * dist-files.mk: add refs to of-ocs-1-cross-fixes.patch, of-ocs.mk * src/of-ocs-1-cross-fixes.patch: new file * src/of-ocs.mk: new file * index.html: add of-ocs
author John Donoghue <john.donoghue@ieee.org>
date Tue, 07 Jul 2015 20:43:46 -0400
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <gta/gta.h>

int main(int argc, char *argv[])
{
    gta_header_t *header;
    gta_result_t r;

    (void)argc;
    (void)argv;

    r = gta_create_header(&header);
    if (r == GTA_OK) {
        gta_destroy_header(header);
    }

    return 0;
}