summaryrefslogtreecommitdiff
path: root/test.c
blob: a56e34fecd9bc7b8d1c621cc169b2be7060f441a (plain)
1
2
3
4
5
6
7
8
9
10
#include <tcclib.h>
#include "test.h"
#include "test2.h"

int start() {
	int a = 3;
	int b = 4;
	printf("add(%i, %i): %i\n", a, b, add(a, b));
	return 0;
}