xref: /llvm-project/lldb/test/API/functionalities/step_scripted/main.c (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <stdio.h>
2 
foo()3 void foo() {
4   int foo = 10;
5   printf("%d\n", foo); // Set a breakpoint here.
6   foo = 20;
7   printf("%d\n", foo);
8 }
9 
main()10 int main() {
11   foo();
12   return 0;
13 }
14