1 2 3 4 5 6 7 8 9 10
#include "baz.hpp" #include "bazdep.hpp" #include <iostream> #include <ostream> int baz(int x) { std::cout << "baz(" << x << ")" << std::endl; return bazdep(x) * 13; }