Blob Blame History Raw
/*
 *  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:
 */