view src/libmodplug-test.c @ 3860:b36a7ab4bd2c

of-fl-core: use OCTAVE_CONFIG to determine system type * src/of-fl-core-1-fixes.patch: use OCTAVE_CONFIG to determine system type
author John Donoghue <john.donoghue@ieee.org>
date Tue, 24 Mar 2015 06:37:36 -0400
parents 7dbb9f04ee33
children
line wrap: on
line source

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

#include <modplug.h>

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

    ModPlug_Settings settings;
    ModPlug_GetSettings(&settings);
    ModPlug_SetSettings(&settings);
    return 0;
}