Imported Upstream version 2.0.14
[platform/upstream/SDL.git] / src / main / uikit / SDL_uikit_main.c
1 /*
2     SDL_uikit_main.c, placed in the public domain by Sam Lantinga  3/18/2019
3 */
4 #include "../../SDL_internal.h"
5
6 /* Include the SDL main definition header */
7 #include "SDL_main.h"
8
9 #ifdef main
10 #undef main
11 #endif
12
13 int
14 main(int argc, char *argv[])
15 {
16     return SDL_UIKitRunApp(argc, argv, SDL_main);
17 }
18
19 /* vi: set ts=4 sw=4 expandtab: */