summaryrefslogtreecommitdiffstats
path: root/src/sdl_mixer-test.c
blob: 902fa10dd3e48e60b7c5e8269372ce8488216768 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* This file is part of MXE.                   */
/* See doc/index.html for further information. */

#include <SDL_mixer.h>

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

    (void)argc;
    (void)argv;

    initted = Mix_Init(MIX_INIT_FLAC | MIX_INIT_OGG | MIX_INIT_MOD);
    (void)initted;
    Mix_Quit();
    return 0;
}