Sign in
skia
/
third_party
/
sdl
/
6ece4d1c0ee102fa48ed5a9568281acee09a41a4
/
.
/
src
/
main
/
linux
/
SDL_main.c
blob: ac1c939e3af1c29928ebab42c9cc4da0fe282e89 [
file
] [
log
] [
blame
]
/* Include the SDL main definition header */
#include
"SDL_main.h"
#ifdef
main
#undef
main
#endif
extern
int
SDL_main
(
int
argc
,
char
*
argv
[]);
int
main
(
int
argc
,
char
*
argv
[])
{
return
(
SDL_main
(
argc
,
argv
));
}