view src/libmodplug-test.c @ 4657:871355b33950

stable-octave.mk: Point to alpha.gnu.org for 4.3.90
author John W. Eaton <jwe@octave.org>
date Thu, 12 Apr 2018 12:08:06 -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;
}