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

16 lines
363 B
C

#include <stdio.h>
void
call_me(int value) {
printf("called with %d\n", value); // Set another here.
}
int
main(int argc, char **argv)
{
call_me(argc); // Set a breakpoint here.
printf("This just spaces the two calls\n");
call_me(argc); // Run here to step over again.
printf("More spacing\n");
return 0; // Make sure we get here on last continue
}