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