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

Latest commit

 

History

History
25 lines (21 loc) · 357 Bytes

SDL_dummy_main.c

File metadata and controls

25 lines (21 loc) · 357 Bytes
 
Jun 22, 2011
Jun 22, 2011
1
2
/* Include the SDL main definition header */
Jan 14, 2012
Jan 14, 2012
3
#include "SDL_config.h"
Jun 22, 2011
Jun 22, 2011
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "SDL_main.h"
#ifdef main
#undef main
int
main(int argc, char *argv[])
{
return (SDL_main(argc, argv));
}
#else
/* Nothing to do on this platform */
int
SDL_main_stub_symbol(void);
int
SDL_main_stub_symbol(void)
{
return 0;
}
#endif
/* vi: set ts=4 sw=4 expandtab: */