aboutsummaryrefslogtreecommitdiffstats
path: root/src/amps/main.c
blob: ce0e065da95e59ba7fbcea80890bfc6e50a1041a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "main.h"
#include "tones.h"
#include "noanswer.h"
#include "outoforder.h"
#include "invalidnumber.h"
#include "congestion.h"

const int tacs = 0;

int main(int argc, char *argv[])
{
	/* init common tones */
	init_tones();
	init_outoforder();
	init_noanswer();
	init_invalidnumber();
	init_congestion();

	return main_amps_tacs(argc, argv);
}