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