blob: 4b0a082d296ec4e4e77ca8a6c8e32204b2c8730d [file] [log] [blame] [edit]
#include <cstdlib>
int counter = 0;
void inc_counter() { ++counter; }
void do_abort() { std::abort(); }
int main() {
return 0; // break here
}