1 2 3 4 5 6 7 8 9
#include "bardep.hpp" #include <iostream> #include <ostream> bar_t bardep(bar_t x) { std::cout << "bardep(" << x << ")" << std::endl; return x + 5; }