brintos

brintos / llvm-project-archived public Read only

0
0
Text · 188 B · 856db44 Raw
11 lines · c
1#ifndef OTHER_H2#define OTHER_H3 4int add(int a, int b) {5  int first = a;6  int second = b; // thread return breakpoint7  int result = first + second;8  return result;9}10#endif // OTHER_H11