/*
SDL_uikit_main.c, placed in the public domain by Sam Lantinga 3/18/2019
*//* Include the SDL main definition header */#include"SDL_main.h"#ifdefined(__IPHONEOS__) || defined(__TVOS__)
#ifndef SDL_MAIN_HANDLED
#ifdef main
#undef main
#endifintmain(intargc,char*argv[]){returnSDL_UIKitRunApp(argc, argv, SDL_main);}#endif/* !SDL_MAIN_HANDLED */#endif/* __IPHONEOS__ || __TVOS__ *//* vi: set ts=4 sw=4 expandtab: */