brintos

brintos / llvm-project-archived public Read only

0
0
Text · 283 B · 77b38c5 Raw
17 lines · cpp
1#include <stdio.h>
2
3extern "C" int a_function();
4extern "C" int c_function();
5extern "C" int b_function();
6extern "C" int d_function();
7
8int main() {
9  a_function();
10  b_function();
11  c_function();
12  d_function();
13
14  puts("running"); // breakpoint here
15  return 0;
16}
17