blob: 77b38c5ccdc6985612733b1d72cee1bea9427314 [file] [log] [blame] [edit]
#include <stdio.h>
extern "C" int a_function();
extern "C" int c_function();
extern "C" int b_function();
extern "C" int d_function();
int main() {
a_function();
b_function();
c_function();
d_function();
puts("running"); // breakpoint here
return 0;
}