xref: /llvm-project/lldb/test/API/commands/expression/dont_allow_jit/main.c (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <stdio.h>
2 
3 int
call_me(int input)4 call_me(int input)
5 {
6   return printf("I was called: %d.\n", input);
7 }
8 
9 int
main()10 main()
11 {
12   int test_var = 10;
13   printf ("Set a breakpoint here: %d.\n", test_var);
14   return call_me(100);
15 }
16