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; }