1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-20 22:53:53 +00:00

15 lines
226 B
C
Raw Normal View History

/*
* 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
}