summaryrefslogtreecommitdiff
path: root/apps/plugins/sdl/src/main/dummy/SDL_dummy_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/sdl/src/main/dummy/SDL_dummy_main.c')
-rw-r--r--apps/plugins/sdl/src/main/dummy/SDL_dummy_main.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/plugins/sdl/src/main/dummy/SDL_dummy_main.c b/apps/plugins/sdl/src/main/dummy/SDL_dummy_main.c
new file mode 100644
index 0000000000..da47d06a87
--- /dev/null
+++ b/apps/plugins/sdl/src/main/dummy/SDL_dummy_main.c
@@ -0,0 +1,13 @@
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