1
2/* Include the SDL main definition header */
3#include "SDL_main.h"
4
5#ifdef main
6#undef main
7int main(int argc, char *argv[])
8{
9	return(SDL_main(argc, argv));
10}
11#else
12/* Nothing to do on this platform */
13#endif
14