mirror of
https://github.com/love2d/love-android.git
synced 2026-08-19 12:14:49 +02:00
22 lines
312 B
C
22 lines
312 B
C
/*
|
|
* mkg3_main.c -- passes fake arguments into main
|
|
*/
|
|
|
|
#undef main
|
|
|
|
int
|
|
main()
|
|
{
|
|
static char *argv[4] = {
|
|
"mkg3states", "-c", "const", "tif_fax3sm.c" };
|
|
|
|
return tool_main(4,argv); // Call the tool "main()" routine
|
|
}
|
|
/*
|
|
* Local Variables:
|
|
* mode: c
|
|
* c-basic-offset: 8
|
|
* fill-column: 78
|
|
* End:
|
|
*/
|