view src/main/linux/SDL_main.c @ 685:cc47d783f096

Date: Sun, 10 Aug 2003 13:24:45 -0400 From: Darrell Walisser Subject: Re: Updated projects? There was one additional patch I forgot to send. I needed to add a few exports to the exports file.
author Sam Lantinga <slouken@libsdl.org>
date Sun, 10 Aug 2003 17:48:56 +0000
parents 25dfe480c75e
children
line wrap: on
line source


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

extern int SDL_main(int argc, char *argv[]);

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