mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
13 lines
159 B
C
13 lines
159 B
C
|
/*
|
||
|
* mac_main.h -- redefines main entry point
|
||
|
*/
|
||
|
|
||
|
#ifndef _mac_main_h
|
||
|
#define _mac_main_h
|
||
|
|
||
|
#undef main
|
||
|
#define main tool_main
|
||
|
|
||
|
#endif /* _mac_main_h */
|
||
|
|