llvm-project/lldb/test/API/commands/expression/dont_allow_jit/main.c

16 lines
207 B
C

#include <stdio.h>
int
call_me(int input)
{
return printf("I was called: %d.\n", input);
}
int
main()
{
int test_var = 10;
printf ("Set a breakpoint here: %d.\n", test_var);
return call_me(100);
}