view src/smpeg-test.c @ 4329:caa35339a354

of-interval: update to v2.1.0 * build_packages.m: update interval version * src/of-interval.mk: update version, checksum, assign options if cross build * src/of-interval-1-cross-fixes.patch: new file * dist-files.mk: added of-interval-1-cross-fixes.patch
author John D
date Thu, 12 Jan 2017 08:16:53 -0500
parents 99516e73b368
children
line wrap: on
line source

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

#include <smpeg.h>
#include <stdio.h>

int main(int argc, char *argv[])
{
    SMPEG_version v;

    (void)argc;
    (void)argv;

    SMPEG_VERSION(&v);
    printf("SMPEG version: %d.%d.%d\n", v.major, v.minor, v.patch);

    return 0;
}