view src/smpeg-test.c @ 4431:aade3b63d8d3

gsl: update to 2.4 * src/gsl.mk: update version, checksum
author John D
date Fri, 21 Jul 2017 16:35:46 -0400
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;
}