mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-09 01:06:00 +00:00
10 lines
153 B
C
10 lines
153 B
C
|
#include "openzap.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
printf("hello\n");
|
||
|
|
||
|
zap_global_set_default_logger(ZAP_LOG_LEVEL_DEBUG);
|
||
|
zap_global_init();
|
||
|
}
|