#include #include #include int main(int argc, char *argv[]) { if (!SDL_Init(0)) { SDL_Log("SDL_Init: could not initialize SDL: %s\n", SDL_GetError()); return 1; } if (MIX_Init() == 0) { SDL_Log("MIX_Init: no sound/music loaders supported (%s)\n", SDL_GetError()); } MIX_Quit(); SDL_Quit(); return 0; }