Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
15 lines (13 loc) · 250 Bytes

SDL_dummy_main.c

File metadata and controls

15 lines (13 loc) · 250 Bytes
 
Apr 26, 2001
Apr 26, 2001
1
2
3
/* Include the SDL main definition header */
#include "SDL_main.h"
Feb 20, 2004
Feb 20, 2004
4
Apr 26, 2001
Apr 26, 2001
5
6
#ifdef main
#undef main
Jul 10, 2006
Jul 10, 2006
7
8
int
main(int argc, char *argv[])
Apr 26, 2001
Apr 26, 2001
9
{
Jul 10, 2006
Jul 10, 2006
10
return (SDL_main(argc, argv));
Apr 26, 2001
Apr 26, 2001
11
}
Feb 20, 2004
Feb 20, 2004
12
#else
May 1, 2006
May 1, 2006
13
/* Nothing to do on this platform */
Feb 20, 2004
Feb 20, 2004
14
#endif
Jul 10, 2006
Jul 10, 2006
15
/* vi: set ts=4 sw=4 expandtab: */