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