Mercurial > sdl-ios-xcode
comparison src/main/linux/SDL_main.c @ 0:74212992fb08
Initial revision
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Thu, 26 Apr 2001 16:45:43 +0000 |
parents | |
children | 25dfe480c75e |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:74212992fb08 |
---|---|
1 | |
2 /* Include the SDL main definition header */ | |
3 #include "SDL_main.h" | |
4 #ifdef main | |
5 #undef main | |
6 #endif | |
7 | |
8 extern int SDL_run(int argc, char **argv); | |
9 | |
10 int main(int argc, char *argv[]) | |
11 { | |
12 return(SDL_run(argc, argv)); | |
13 } |