author | Ozkan Sezer |
Sat, 23 Jan 2021 03:41:02 +0300 | |
changeset 14771 | 852c18f76bf7 |
parent 8616 | ec011c16e2fd |
permissions | -rw-r--r-- |
1 /*
2 SDL_dummy_main.c, placed in the public domain by Sam Lantinga 3/13/14
3 */
4 #include "../../SDL_internal.h"
6 /* Include the SDL main definition header */
7 #include "SDL_main.h"
9 #ifdef main
10 #undef main
11 int
12 main(int argc, char *argv[])
13 {
14 return (SDL_main(argc, argv));
15 }
16 #else
17 /* Nothing to do on this platform */
18 int
19 SDL_main_stub_symbol(void);
21 int
22 SDL_main_stub_symbol(void)
23 {
24 return 0;
25 }
26 #endif
28 /* vi: set ts=4 sw=4 expandtab: */