#include "functions.h" #include int custom_sum(int a, int b) { #ifdef DEBUG std::cout << "running sum(a = " << a << ", b = " << b << ")" << std::endl; #endif return a + b; }