view src/libmikmod-test.c @ 4364:39e5f8d6cb85

of-image: update to 2.4.6 * build_packages.m: update io version * src/of-io.mk: update version, checksum, and subdir * src/of-io-1-fixes.patch: removed * dist-files.mk: remove ref to of-image-1-fixes.patch
author John D
date Tue, 14 Mar 2017 12:27:39 -0400
parents 99516e73b368
children
line wrap: on
line source

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

#include <mikmod.h>

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

    MikMod_RegisterAllDrivers();
    MikMod_Init("");

    MikMod_Exit();
    return 0;
}