llvm-project/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/main.c

11 lines
110 B
C

#include <stdio.h>
void foo() {
printf("Set a breakpoint here.\n");
}
int main() {
foo();
return 0;
}