sdl

FORK: Simple Directmedia Layer
git clone https://git.neptards.moe/neptards/sdl.git
Log | Files | Refs

SDL_uikit_main.c (339B)


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