brintos

brintos / llvm-project-archived public Read only

0
0
Text · 139 B · 1c300cc Raw
11 lines · cpp
1#include <stdio.h>2 3void foo() {4  printf("hello world from foo"); // Set break point at this line.5}6 7int main() {8  foo();9  return 0;10}11