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