brintos

brintos / llvm-project-archived public Read only

0
0
Text · 147 B · b3f90db Raw
10 lines · c
1#include <stdio.h>2void done() {}3int main() {4  puts("in main");5  done(); // Set breakpoint here6  done();7  puts("leaving main");8  return 0;9}10