xref: /llvm-project/lldb/test/API/commands/process/continue_to_bkpt/main.c (revision 4298b1b8d13715963cc1a917bc122208a29710fb)
1 #include <stdio.h>
2 
main(int argc,char const * argv[])3 int main (int argc, char const *argv[])
4 {
5   int pass_me = argc + 10; // Stop here to get started.
6   printf("This is the zeroth stop\n");
7   printf("This is the first stop\n");
8   printf("This is the second stop\n");
9   printf("This is the third stop\n");
10   printf("This is the fourth stop\n");
11   printf("This is the fifth stop\n");
12   printf("This is the sixth stop\n");
13   printf("This is the seventh stop\n");
14   printf("This is the eighth stop\n");
15   printf("This is the nineth stop\n");
16 
17   return 0;
18 }
19