mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-05-16 11:52:16 +00:00
21 lines
363 B
C
21 lines
363 B
C
/*
|
|
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"
|
|
|
|
#ifndef SDL_MAIN_HANDLED
|
|
#ifdef main
|
|
#undef main
|
|
#endif
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
return SDL_UIKitRunApp(argc, argv, SDL_main);
|
|
}
|
|
#endif /* !SDL_MAIN_HANDLED */
|
|
|
|
/* vi: set ts=4 sw=4 expandtab: */
|