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

const int tacs = 1;

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

	return main_amps_tacs(argc, argv);
}