xref: /llvm-project/lldb/test/API/functionalities/thread_plan/main.c (revision 1893065d7bf5c41fbd0dbbee0a39933d3a99806b)
1 #include <stdio.h>
2 
3 void
call_me(int value)4 call_me(int value) {
5   printf("called with %d\n", value); // Set another here.
6 }
7 
8 int
main(int argc,char ** argv)9 main(int argc, char **argv)
10 {
11   call_me(argc); // Set a breakpoint here.
12   printf("This just spaces the two calls\n");
13   call_me(argc); // Run here to step over again.
14   printf("More spacing\n");
15   return 0; // Make sure we get here on last continue
16 }
17