1/*
2 *  mac_main.c -- The REAL entry point which
3 *   calls the tools main code. For the tools
4 *   the symbol "main" has been #defined to "tool_main"
5 *   so that this entry point may be used to access
6 *   the user-input first.
7 */
8
9#undef main
10
11int
12main()
13{
14	int argc;
15	char **argv;
16
17	argc=ccommand(&argv);
18
19	return tool_main(argc,argv);  // Call the tool "main()" routine
20}
21/*
22 * Local Variables:
23 * mode: c
24 * c-basic-offset: 8
25 * fill-column: 78
26 * End:
27 */
28