aboutsummaryrefslogtreecommitdiffstats
path: root/distrib/sdl-1.2.12/src/main/dummy/SDL_dummy_main.c
blob: da47d06a8757a6448d71e981f3e4b8860f52220f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

/* 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