mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-21 12:35:47 -04:00
12 lines
144 B
C++
12 lines
144 B
C++
#include <cstdlib>
|
|
|
|
int counter = 0;
|
|
|
|
void inc_counter() { ++counter; }
|
|
|
|
void do_abort() { abort(); }
|
|
|
|
int main() {
|
|
return 0; // break here
|
|
}
|