view src/main/linux/SDL_main.c @ 32:13ae3bc6e39a

Reverted ENABLE_X11 patch - FIXME, this needs a better solution in the future.
author Sam Lantinga <slouken@lokigames.com>
date Tue, 22 May 2001 05:05:16 +0000
parents 74212992fb08
children 25dfe480c75e
line wrap: on
line source


/* Include the SDL main definition header */
#include "SDL_main.h"
#ifdef main
#undef main
#endif

extern int SDL_run(int argc, char **argv);

int main(int argc, char *argv[])
{
	return(SDL_run(argc, argv));
}