bolt/deps/llvm-18.1.8/lldb/test/API/functionalities/step_scripted/main.c
2025-02-14 19:21:04 +01:00

13 lines
174 B
C

#include <stdio.h>
void foo() {
int foo = 10;
printf("%d\n", foo); // Set a breakpoint here.
foo = 20;
printf("%d\n", foo);
}
int main() {
foo();
return 0;
}