aboutsummaryrefslogtreecommitdiffstats
path: root/src/tacs/main.c
blob: df3e2ccdebfe0e2f98ceead3d01e938ae43d1dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "../amps/main.h"
#include "../amps/tones.h"
#include "../amps/outoforder.h"

const int tacs = 1;
const int jtacs = 0;

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

	return main_amps_tacs("tacs", argc, argv);
}