Mac and Linux SDL2 binary snapshots
Edward Rudd
2021-06-15 dec7875a6e23212021e4d9080330a42832dfe02a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
    SDL_uikit_main.c, placed in the public domain by Sam Lantinga  3/18/2019
*/
#include "../../SDL_internal.h"
 
/* Include the SDL main definition header */
#include "SDL_main.h"
 
#ifdef main
#undef main
#endif
 
int
main(int argc, char *argv[])
{
    return SDL_UIKitRunApp(argc, argv, SDL_main);
}
 
/* vi: set ts=4 sw=4 expandtab: */