src/main/linux/SDL_main.c

/* [<][>]
[^][v][top][bottom][index][help] */

FUNCTIONS

This source file includes following functions.
  1. main

   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[])
     /* [<][>][^][v][top][bottom][index][help] */
  11 {
  12         return(SDL_run(argc, argv));
  13 }

/* [<][>][^][v][top][bottom][index][help] */