Kart-Public/src/sdl12/SDL_main/SDL_dummy_main.c

13 lines
211 B
C
Raw Normal View History

2014-08-04 01:02:04 +00:00
/* Include the SDL main definition header */
#include "SDL_main.h"
#ifdef main
#undef main
int main(int argc, char *argv[])
{
return(SDL_main(argc, argv));
}
#else
/* Nothing to do on this platform */;
#endif