main.cpp 149 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 #include <cstdlib> int counter = 0; void inc_counter() { ++counter; } void do_abort() { std::abort(); } int main() { return 0; // break here }