Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 168 Bytes

SDL_dummy_main.c

File metadata and controls

11 lines (9 loc) · 168 Bytes
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
6
7
8
9
/* Include the SDL main definition header */
#include "SDL_main.h"
#ifdef main
#undef main
#endif
int main(int argc, char *argv[])
{
Jun 10, 2001
Jun 10, 2001
10
return(SDL_main(argc, argv));
Apr 26, 2001
Apr 26, 2001
11
}