mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-30 22:31:05 +00:00
12 lines
211 B
C
12 lines
211 B
C
/* Include the SDL main definition header */
|
|
#include "SDL_main.h"
|
|
|
|
#ifdef main
|
|
#undef main
|
|
int main(int argc, char *argv[])
|
|
{
|
|
return(SDL_main(argc, argv));
|
|
}
|
|
#else
|
|
/* Nothing to do on this platform */;
|
|
#endif
|